@@ -5,38 +5,3 @@ module "iam_read_only_group" {
55 group_name = " read-only-group"
66 policy_arn = [" arn:aws:iam::aws:policy/ReadOnlyAccess" ]
77}
8-
9- // Create project admin group - this group is dependent on tagging resources
10- # module "iam_project_admin_group" {
11- # source = "./modules/groups"
12-
13- # group_name = "project-admin-group"
14- # policy_arn = [ # here we can pass a list of policies that are aws managed or customer managed
15- # "arn:aws:iam::aws:policy/SomeAWSPolicy",
16- # module.iam_policies.policy_arns["ManageAccessKeys"]
17- # ]
18- # }
19-
20- // Create mentor group - need to discuss these permissions
21- # module "iam_ops_mentor_group" {
22- # source = "./modules/groups"
23-
24- # group_name = "ops-mentor-group"
25- # policy_arn = [ # here we can pass a list of policies that are aws managed or customer managed
26- # "arn:aws:iam::aws:policy/AdministratorAccess",
27- # "arn:aws:iam::035866691871:policy/ManageAccessKeys",
28- # ]
29- # }
30-
31- // Create IAM management group --
32- # module "iam_services_supervisor_group" {
33- # source = "./modules/groups"
34-
35- # group_name = "iam-services-supervisor-group"
36- # policy_arn = [ # here we can pass a list of policies that are aws managed or customer managed
37- # "arn:aws:iam::aws:policy/AdministratorAccess",
38- # "arn:aws:iam::035866691871:policy/ManageAccessKeys",
39- # ]
40- # }
41-
42- // Cost management group = "Cost-Management"
0 commit comments