We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 645891c commit 97294bbCopy full SHA for 97294bb
examples/with_new_groups/main.tf
@@ -0,0 +1,14 @@
1
+module "with_new_groups" {
2
+
3
+ source = "evairmarinho/iam-users-groups/aws"
4
+ version = "= 1.0.4"
5
+ groups = ["developers"]
6
+ create_groups = true
7
+ users = {
8
+ "user1" : {
9
+ name : "test_user"
10
+ groups : ["ADM", "developers"]
11
+ path : "/"
12
+ }
13
14
+}
examples/without_new_groups/main.tf
@@ -0,0 +1,15 @@
+module "without_new_groups" {
+ create_groups = false
+ groups : ["Marketing", "SysAdmins"]
15
0 commit comments