From 9b0cd0a8e4106a394b4762774a04b95fef259bee Mon Sep 17 00:00:00 2001 From: luis cielak Date: Thu, 13 Sep 2018 11:13:17 -0400 Subject: [PATCH] Add block-list description --- atst/forms/data.py | 45 ++++++++++++++++++++++++++ templates/workspaces/members/edit.html | 6 +++- 2 files changed, 50 insertions(+), 1 deletion(-) diff --git a/atst/forms/data.py b/atst/forms/data.py index bb88bab4..ebdeacbb 100644 --- a/atst/forms/data.py +++ b/atst/forms/data.py @@ -141,6 +141,51 @@ WORKSPACE_ROLES = [ ), ] +ENVIRONMENT_ROLES = [ + ( + "developer", + { + "name": "Developer", + "description": "Configures cloud-based IaaS and PaaS computing, networking, and storage services.", + }, + ), + ( + "database_administrator", + { + "name": "Database Administrator", + "description": "Configures cloud-based database services.", + }, + ), + ( + "devops", + { + "name": "DevOps", + "description": "Provisions, deprovisions, and deploys cloud-based IaaS and PaaS computing, networking, and storage services, including pre-configured machine images.", + }, + ), + ( + "billing_administrator", + { + "name": "Billing Administrator", + "description": "Views cloud resource usage, budget reports, and invoices; Tracks budgets, including spend reports, cost planning and projections, and sets limits based on cloud service usage.", + }, + ), + ( + "security_administrator", + { + "name": "Security Administrator", + "description": "Accesses information security and control tools of cloud resources which include viewing cloud resource usage logging, user roles and permissioning history.", + }, + ), + ( + "financial_auditor", + { + "name": "Financial Auditor", + "description": "Views cloud resource usage and budget reports.", + }, + ), +] + FUNDING_TYPES = [ ("", "- Select -"), ("RDTE", "Research, Development, Testing & Evaluation (RDT&E)"), diff --git a/templates/workspaces/members/edit.html b/templates/workspaces/members/edit.html index af66d615..51061c73 100644 --- a/templates/workspaces/members/edit.html +++ b/templates/workspaces/members/edit.html @@ -56,6 +56,10 @@ Environment access for Danny Knight
Project Name - Environment Name
+
+

An environment role determines the permissions a member of the workspace assumes when using the JEDI Cloud.

+

A member may have different environment roles across different projects. A member can only have one assigned environment role in a given environment.

+
@@ -95,7 +99,7 @@