Skip to content

Commit

Permalink
fix: ran tf fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
lsousadev committed Oct 31, 2024
1 parent 39acee1 commit 52e1a96
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
10 changes: 5 additions & 5 deletions terraform/aws-gha-oidc-providers.tf
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
module "iam_oidc_gha_incubator" {
source = "./modules/aws-gha-oidc-providers"
source = "./modules/aws-gha-oidc-providers"

role_name = "gha-incubator"
use_wildcard = true
github_branch = "refs/heads/*" # allows any branch
github_repo = "hackforla/incubator"
role_name = "gha-incubator"
use_wildcard = true
github_branch = "refs/heads/*" # allows any branch
github_repo = "hackforla/incubator"

policy_arns = [
"arn:aws:iam::aws:policy/AdministratorAccess"
Expand Down
22 changes: 11 additions & 11 deletions terraform/aws-users.tf
Original file line number Diff line number Diff line change
Expand Up @@ -152,23 +152,23 @@ module "iam_user_alexe" {
user_groups = ["ops-leads"]
}

module "iam_user_rsakuma"{
module "iam_user_rsakuma" {
source = "./modules/aws-users"

user_name = "rsakuma"
user_tags = {
"Project" ="devops-security"
"Project" = "devops-security"
"Access Level" = "1"
}
user_groups = ["read-only-group"]
}

module "iam_user_npang4"{
module "iam_user_npang4" {
source = "./modules/aws-users"

user_name = "npang4"
user_tags = {
"Project" ="devops-security"
"Project" = "devops-security"
"Access Level" = "1"
}
user_groups = ["read-only-group"]
Expand All @@ -186,12 +186,12 @@ module "iam_user_drakeredwind01" {
}

module "iam_user_lsousadev" {
source = "./modules/aws-users"
source = "./modules/aws-users"

user_name = "lsousadev"
user_tags = {
"Project" = "devops-security"
"Access Level" = "1"
}
user_groups = ["read-only-group"]
user_name = "lsousadev"
user_tags = {
"Project" = "devops-security"
"Access Level" = "1"
}
user_groups = ["read-only-group"]
}

0 comments on commit 52e1a96

Please sign in to comment.