Skip to content

Commit

Permalink
Merge pull request #47 from hackforla/46-add-new-iam-user-ryan
Browse files Browse the repository at this point in the history
Add new IAM user(Ryan Sakuma)
  • Loading branch information
chelseybeck authored Aug 15, 2024
2 parents 8d8b6ba + 87c4e91 commit 4c2eb03
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 @@ -139,4 +139,15 @@ module "iam_user_spiteless" {
"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 4c2eb03

Please sign in to comment.