Skip to content

Commit

Permalink
Update Terraform cloudposse/iam-role/aws to v0.20.0
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Jan 3, 2025
1 parent 66f7288 commit ee3ea27
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions components/terraform/aws/automation-roles/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ resource "aws_iam_role_policy_attachment" "allow_automation_tasks_to_assume" {
# The accelerator automation role definitions
module "automation_auto_role" {
source = "cloudposse/iam-role/aws"
version = "0.19.0"
version = "0.20.0"
enabled = module.this.enabled
namespace = "accelerator-auto"
environment = "automation"
Expand Down Expand Up @@ -67,7 +67,7 @@ module "automation_auto_role" {

module "automation_dev_role" {
source = "cloudposse/iam-role/aws"
version = "0.19.0"
version = "0.20.0"
enabled = lookup(var.accounts, "dev", null) != null ? true : false
namespace = "accelerator-dev"
environment = "automation"
Expand All @@ -94,7 +94,7 @@ module "automation_dev_role" {

module "automation_staging_role" {
source = "cloudposse/iam-role/aws"
version = "0.19.0"
version = "0.20.0"
enabled = lookup(var.accounts, "staging", null) != null ? true : false
namespace = "accelerator-staging"
environment = "automation"
Expand All @@ -121,7 +121,7 @@ module "automation_staging_role" {

module "automation_prod_role" {
source = "cloudposse/iam-role/aws"
version = "0.19.0"
version = "0.20.0"
enabled = lookup(var.accounts, "prod", null) != null ? true : false
namespace = "accelerator-prod"
environment = "automation"
Expand Down

0 comments on commit ee3ea27

Please sign in to comment.