Skip to content

Commit

Permalink
[nc] new IAM tf module
Browse files Browse the repository at this point in the history
Signed-off-by: Nic Cheneweth <[email protected]>
  • Loading branch information
ncheneweth committed May 9, 2024
1 parent cda1eb8 commit 2b997f5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

module "PSKNonprodServiceAccount" {
source = "terraform-aws-modules/iam/aws//modules/iam-user"
version = "5.37.1"
version = "5.39.0"

create_user = var.is_state_account
name = "PSKNonprodServiceAccount"
Expand All @@ -22,7 +22,7 @@ module "PSKNonprodServiceAccount" {

module "PSKNonprodServiceAccountGroup" {
source = "terraform-aws-modules/iam/aws//modules/iam-group-with-assumable-roles-policy"
version = "5.37.1"
version = "5.39.0"

count = var.is_state_account ? 1 : 0
name = "PSKNonprodServiceAccountGroup"
Expand All @@ -41,7 +41,7 @@ module "PSKNonprodServiceAccountGroup" {

module "PSKProdServiceAccount" {
source = "terraform-aws-modules/iam/aws//modules/iam-user"
version = "5.37.1"
version = "5.39.0"

create_user = var.is_state_account
name = "PSKProdServiceAccount"
Expand All @@ -54,7 +54,7 @@ module "PSKProdServiceAccount" {

module "PSKProdServiceAccountGroup" {
source = "terraform-aws-modules/iam/aws//modules/iam-group-with-assumable-roles-policy"
version = "5.37.1"
version = "5.39.0"

count = var.is_state_account ? 1 : 0
name = "PSKProdServiceAccountGroup"
Expand Down

0 comments on commit 2b997f5

Please sign in to comment.