-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* test adding groups and memberships * fix syntax * add back in data block * fix syntax * add group changes * remove duplicate resource group * test chatgpt code * try and fix group assocation * bad * add in daily commit * update readme * try and fix group membership * make users belong to one group * change variable type in users object * remove string brackets * try and fix group membership * undo type change * try and fix userid error
- Loading branch information
1 parent
b876b00
commit 58e791a
Showing
4 changed files
with
8 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
module "users" { | ||
source = "./modules/iam_identity_users" | ||
groups = ["administrators", "developers", "qa", "networking"] | ||
groups = ["administrators", "developers", "networking"] | ||
|
||
users = { | ||
"Zach Rundle" = { | ||
first_name = "Zach" | ||
last_name = "Rundle" | ||
groups = ["administrators"] | ||
groups = "administrators" | ||
}, | ||
"Maverick Dog" = { | ||
first_name = "Maverick" | ||
last_name = "Dog" | ||
groups = ["developers", "qa"] | ||
groups = "developers" | ||
}, | ||
} | ||
} |