From 2d414f3db000ae2948156a403d895b2fd338646b Mon Sep 17 00:00:00 2001 From: Myron Chen <125855279+myronchen-git@users.noreply.github.com> Date: Wed, 17 Sep 2025 18:43:05 -0700 Subject: [PATCH] chore: add Myron Chen to AWS and README Added Myron Chen to the "read-only-group" AWS group for project "devops-security". Added Myron Chen to the Terraform README/docs. --- terraform/README.md | 1 + terraform/aws-users.tf | 11 +++++++++++ 2 files changed, 12 insertions(+) diff --git a/terraform/README.md b/terraform/README.md index 37d7133..310ce68 100644 --- a/terraform/README.md +++ b/terraform/README.md @@ -26,6 +26,7 @@ Resources created by this code repository. | [iam\_user\_here](#module\_iam\_user\_here) | ./modules/aws-users | n/a | | [iam\_user\_jbubar](#module\_iam\_user\_jbubar) | ./modules/aws-users | n/a | | [iam\_user\_lsousadev](#module\_iam\_user\_lsousadev) | ./modules/aws-users | n/a | +| [iam\_user\_myronchen-git](#module\_iam\_user\_myronchen-git) | ./modules/aws-users | n/a | | [iam\_user\_npang4](#module\_iam\_user\_npang4) | ./modules/aws-users | n/a | | [iam\_user\_raibarra](#module\_iam\_user\_raibarra) | ./modules/aws-users | n/a | | [iam\_user\_rsakuma](#module\_iam\_user\_rsakuma) | ./modules/aws-users | n/a | diff --git a/terraform/aws-users.tf b/terraform/aws-users.tf index 18abec3..995879d 100644 --- a/terraform/aws-users.tf +++ b/terraform/aws-users.tf @@ -262,6 +262,17 @@ module "iam_user_ezesalvatore4" { user_groups = ["read-only-group"] } +module "iam_user_myronchen-git" { + source = "./modules/aws-users" + + user_name = "myronchen-git" + user_tags = { + "Project" = "devops-security" + "Access Level" = "1" + } + user_groups = ["read-only-group"] +} + module "iam_user_here" { source = "./modules/aws-users"