From 2ecded949a0a8426f8499f521f78cb52ccf3d491 Mon Sep 17 00:00:00 2001 From: "mike@here" Date: Sun, 24 Nov 2024 20:34:29 -0800 Subject: [PATCH] terraform/aws-users.tf add user herehfla https://github.com/hackforla/devops-security/issues/89 --- terraform/aws-users.tf | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/terraform/aws-users.tf b/terraform/aws-users.tf index e44c10a..042542e 100644 --- a/terraform/aws-users.tf +++ b/terraform/aws-users.tf @@ -195,3 +195,14 @@ module "iam_user_lsousadev" { } user_groups = ["read-only-group"] } + +module "iam_user_herehfla" { +source = "./modules/aws-users" + +user_name = "herehfla" # Replace with GitHub handle +user_tags = { + "Project" = "devops-security" + "Access Level" = "1" +} +user_groups = ["read-only-group"] +} \ No newline at end of file