diff --git a/terraform/README.md b/terraform/README.md
index d98a691..0e143b9 100644
--- a/terraform/README.md
+++ b/terraform/README.md
@@ -10,38 +10,39 @@ Resources created by this code repository.
| [aws\_custom\_policies](#module\_aws\_custom\_policies) | ./modules/aws-policies | n/a |
| [iam\_oidc\_gha\_incubator](#module\_iam\_oidc\_gha\_incubator) | ./modules/aws-gha-oidc-providers | n/a |
| [iam\_read\_only\_group](#module\_iam\_read\_only\_group) | ./modules/aws-groups | n/a |
-| [iam\_services\_supervisor\_group](#module\_iam\_services\_supervisor\_group) | ./modules/aws-groups | n/a |
| [iam\_user\_Bwoltz](#module\_iam\_user\_Bwoltz) | ./modules/aws-users | n/a |
-| [iam\_user\_JimmyJuarez10](#module\_iam\_user\_JimmyJuarez10) | ./modules/aws-users | n/a |
-| [iam\_user\_abbyz123](#module\_iam\_user\_abbyz123) | ./modules/aws-users | n/a |
+| [iam\_user\_Ganeshswaminathan1912](#module\_iam\_user\_Ganeshswaminathan1912) | ./modules/aws-users | n/a |
+| [iam\_user\_JArody07](#module\_iam\_user\_JArody07) | ./modules/aws-users | n/a |
| [iam\_user\_alexe](#module\_iam\_user\_alexe) | ./modules/aws-users | n/a |
-| [iam\_user\_awlFCCamp](#module\_iam\_user\_awlFCCamp) | ./modules/aws-users | n/a |
| [iam\_user\_benettonkkb](#module\_iam\_user\_benettonkkb) | ./modules/aws-users | n/a |
| [iam\_user\_bltomlin](#module\_iam\_user\_bltomlin) | ./modules/aws-users | n/a |
-| [iam\_user\_brittanyms](#module\_iam\_user\_brittanyms) | ./modules/aws-users | n/a |
| [iam\_user\_chelseyb](#module\_iam\_user\_chelseyb) | ./modules/aws-users | n/a |
| [iam\_user\_drakeredwind01](#module\_iam\_user\_drakeredwind01) | ./modules/aws-users | n/a |
| [iam\_user\_ezesalvatore4](#module\_iam\_user\_ezesalvatore4) | ./modules/aws-users | n/a |
-| [iam\_user\_freaky4wrld](#module\_iam\_user\_freaky4wrld) | ./modules/aws-users | n/a |
| [iam\_user\_gmgonzal](#module\_iam\_user\_gmgonzal) | ./modules/aws-users | n/a |
| [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 |
-| [iam\_user\_samuelusc](#module\_iam\_user\_samuelusc) | ./modules/aws-users | n/a |
-| [iam\_user\_shikha0428](#module\_iam\_user\_shikha0428) | ./modules/aws-users | n/a |
-| [iam\_user\_shinjonathan](#module\_iam\_user\_shinjonathan) | ./modules/aws-users | n/a |
-| [iam\_user\_spiteless](#module\_iam\_user\_spiteless) | ./modules/aws-users | n/a |
| [iam\_user\_srinipandiyan](#module\_iam\_user\_srinipandiyan) | ./modules/aws-users | n/a |
| [iam\_user\_testiamuser](#module\_iam\_user\_testiamuser) | ./modules/aws-users | n/a |
| [iam\_user\_tylerthome](#module\_iam\_user\_tylerthome) | ./modules/aws-users | n/a |
+## Resources
+| Name | Type |
+|------|------|
+| [aws_iam_role.incubator_tf_apply](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/iam_role) | resource |
+| [aws_iam_role.incubator_tf_plan](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/iam_role) | resource |
+| [aws_iam_role_policy_attachment.incubator_tf_apply_admin](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/iam_role_policy_attachment) | resource |
+| [aws_iam_role_policy_attachment.incubator_tf_plan_readonly](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/iam_role_policy_attachment) | resource |
+## Providers
+| Name | Version |
+|------|---------|
+| [aws](#provider\_aws) | 6.38.0 |
diff --git a/terraform/aws-users.tf b/terraform/aws-users.tf
index 3aa3514..35accfb 100644
--- a/terraform/aws-users.tf
+++ b/terraform/aws-users.tf
@@ -41,7 +41,7 @@ module "iam_user_alexe" {
"Project" = "devops-security"
"Access Level" = "1"
}
- user_groups = ["ops-leads"]
+ user_groups = ["read-only-group"]
}
module "iam_user_rsakuma" {
@@ -52,7 +52,7 @@ module "iam_user_rsakuma" {
"Project" = "devops-security"
"Access Level" = "1"
}
- user_groups = ["ops-leads"]
+ user_groups = ["read-only-group"]
}
module "iam_user_npang4" {
@@ -187,3 +187,13 @@ module "iam_user_Ganeshswaminathan1912" {
user_groups = ["read-only-group"]
}
+module "iam_user_JArody07" {
+ source = "./modules/aws-users"
+
+ user_name = "JArody-7"
+ user_tags = {
+ "Project" = "devops-security"
+ "Access Level" = "1"
+ }
+ user_groups = ["read-only-group"]
+}
\ No newline at end of file