Skip to content

Commit

Permalink
Merge branch 'main' into 40-add-new-iam-user-alex
Browse files Browse the repository at this point in the history
  • Loading branch information
ale210 committed Aug 15, 2024
2 parents bb119a2 + 4c2eb03 commit 4ee8a8b
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion terraform/aws-users.tf
Original file line number Diff line number Diff line change
Expand Up @@ -150,4 +150,15 @@ module "iam_user_alexe" {
"Access Level" = "1"
}
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 4ee8a8b

Please sign in to comment.