diff --git a/terraform/aws-groups.tf b/terraform/aws-groups.tf index 8ad209e..42a44e5 100644 --- a/terraform/aws-groups.tf +++ b/terraform/aws-groups.tf @@ -10,12 +10,12 @@ module "iam_read_only_group" { } // Create iam services admin group -module "iam_services_admin_group" { +module "iam_services_supervisor_group" { source = "./modules/aws-groups" - group_name = "iam-services-admin-group" + group_name = "iam-services-supervisor-group" policy_arn = { - "IAMServicesAdmin" = module.aws_custom_policies.policy_arns["IAMServicesSupervisor"] + "IAMServicesSupervisor" = module.aws_custom_policies.policy_arns["IAMServicesSupervisor"] } }