Skip to content

Commit

Permalink
Merge pull request #43 from hackforla/40-add-new-iam-user-alex
Browse files Browse the repository at this point in the history
add new IAM user - alex english
  • Loading branch information
chelseybeck authored Aug 15, 2024
2 parents 07cd46e + 4ee8a8b commit dcda306
Showing 1 changed file with 18 additions and 7 deletions.
25 changes: 18 additions & 7 deletions terraform/aws-users.tf
Original file line number Diff line number Diff line change
Expand Up @@ -141,13 +141,24 @@ module "iam_user_spiteless" {
user_groups = ["read-only-group"]
}

module "iam_user_rsakuma"{
source = "./modules/aws-users"
module "iam_user_alexe" {
source = "./modules/aws-users"

user_name = "rsakuma"
user_tags = {
"Project" ="devops-security"
"Access Level" = "1"
user_name = "alexe"
user_tags = {
"Project" = "devops-security"
"Access Level" = "1"
}
user_groups = ["read-only-group"]
}
user_groups = ["read-only-group"]

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

user_name = "rsakuma"
user_tags = {
"Project" ="devops-security"
"Access Level" = "1"
}
user_groups = ["read-only-group"]
}

0 comments on commit dcda306

Please sign in to comment.