Skip to content

Commit

Permalink
Merge pull request #35 from hackforla/29-vrms-iam-access
Browse files Browse the repository at this point in the history
adding 2 new users to vrms
  • Loading branch information
brittanyms authored May 30, 2024
2 parents 9dd0eaa + a60cc8b commit 417916a
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions terraform/aws-users.tf
Original file line number Diff line number Diff line change
Expand Up @@ -117,4 +117,26 @@ module "iam_user_chelseyb" {
"Access Level" = "1"
}
user_groups = ["read-only-group", "iam-services-supervisor-group"]
}

module "iam_user_jbubar" {
source = "./modules/aws-users"

user_name = "jbubar"
user_tags = {
"Project" = "vrms"
"Access Level" = "1"
}
user_groups = ["read-only-group"]
}

module "iam_user_spiteless" {
source = "./modules/aws-users"

user_name = "spiteless"
user_tags = {
"Project" = "vrms"
"Access Level" = "1"
}
user_groups = ["read-only-group"]
}

0 comments on commit 417916a

Please sign in to comment.