diff --git a/terraform/aws-users.tf b/terraform/aws-users.tf index 710af59..7a8ebd3 100644 --- a/terraform/aws-users.tf +++ b/terraform/aws-users.tf @@ -197,12 +197,23 @@ module "iam_user_lsousadev" { } module "iam_user_srinipandiyan" { -source = "./modules/aws-users" + source = "./modules/aws-users" + + user_name = "srinipandiyan" + user_tags = { + "Project" = "devops-security" + "Access Level" = "1" + } + user_groups = ["read-only-group"] +} -user_name = "srinipandiyan" -user_tags = { - "Project" = "devops-security" - "Access Level" = "1" +module "iam_user_bltomlin" { + source = "./modules/aws-users" + + user_name = "bltomlin" # Replace with GitHub handle + user_tags = { + "Project" = "devops-security" + "Access Level" = "1" + } + user_groups = ["read-only-group"] } -user_groups = ["read-only-group"] -} \ No newline at end of file