We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efc3580 commit 8da07fbCopy full SHA for 8da07fb
1 file changed
terraform/aws-users.tf
@@ -84,4 +84,26 @@ module "iam_user_awlFCCamp" {
84
"Access Level" = "1"
85
}
86
user_groups = ["read-only-group"]
87
+}
88
+
89
+module "iam_user_testiamuser" {
90
+ source = "./modules/aws-users"
91
92
+ user_name = "testiamuser"
93
+ user_tags = {
94
+ "Project" = "devops-security"
95
+ "Access Level" = "1"
96
+ }
97
+ user_groups = ["read-only-group"]
98
99
100
+module "iam_user_chelseyb" {
101
102
103
+ user_name = "chelseyb"
104
105
106
107
108
+ user_groups = ["read-only-group", "iam-services-admin-group"]
109
0 commit comments