Skip to content

Commit

Permalink
IAM upgrades: SSO Permission Sets as Teams, SourceIdentity support, r…
Browse files Browse the repository at this point in the history
  • Loading branch information
Nuru authored Jun 29, 2023
1 parent 2afd6c9 commit bfda727
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/provider-other-regions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ provider "aws" {
# module.iam_roles.terraform_role_arn may be null, in which case do not assume a role.
for_each = compact([module.iam_roles.terraform_role_arn])
content {
role_arn = module.iam_roles.terraform_role_arn
role_arn = assume_role.value
}
}
}
Expand All @@ -28,7 +28,7 @@ provider "aws" {
# module.iam_roles.terraform_role_arn may be null, in which case do not assume a role.
for_each = compact([module.iam_roles.terraform_role_arn])
content {
role_arn = module.iam_roles.terraform_role_arn
role_arn = assume_role.value
}
}
}
2 changes: 1 addition & 1 deletion src/providers.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ provider "aws" {
# module.iam_roles.terraform_role_arn may be null, in which case do not assume a role.
for_each = compact([module.iam_roles.terraform_role_arn])
content {
role_arn = module.iam_roles.terraform_role_arn
role_arn = assume_role.value
}
}
}
Expand Down

0 comments on commit bfda727

Please sign in to comment.