Skip to content

Commit

Permalink
chore(deps): update terraform terraform-aws-modules/iam/aws to v5.47.1
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Oct 22, 2024
1 parent 32f6cc1 commit 140344a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions terraform/foundation-stack/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ module "karpenter" {
# IAM roles and policies for the cluster
module "load_balancer_controller_irsa_role" {
source = "terraform-aws-modules/iam/aws//modules/iam-role-for-service-accounts-eks"
version = "5.46.0"
version = "5.47.1"

create_role = var.stack_create

Expand All @@ -176,7 +176,7 @@ module "load_balancer_controller_irsa_role" {

module "ebs_csi_driver_irsa_role" {
source = "terraform-aws-modules/iam/aws//modules/iam-role-for-service-accounts-eks"
version = "5.46.0"
version = "5.47.1"

create_role = var.stack_create

Expand Down Expand Up @@ -218,7 +218,7 @@ module "s3_csi" {
module "s3_driver_irsa_role" {
count = var.stack_create ? 1 : 0
source = "terraform-aws-modules/iam/aws//modules/iam-role-for-service-accounts-eks"
version = "5.46.0"
version = "5.47.1"
create_role = var.stack_create

role_name = "${var.stack_name}-s3-csi-driver-role"
Expand All @@ -238,7 +238,7 @@ module "s3_driver_irsa_role" {
module "external_dns_irsa_role" {
count = var.stack_create ? 1 : 0
source = "terraform-aws-modules/iam/aws//modules/iam-role-for-service-accounts-eks"
version = "5.46.0"
version = "5.47.1"

create_role = var.stack_create

Expand All @@ -259,7 +259,7 @@ module "external_dns_irsa_role" {
module "cert_manager_irsa_role" {
count = var.stack_create ? 1 : 0
source = "terraform-aws-modules/iam/aws//modules/iam-role-for-service-accounts-eks"
version = "5.46.0"
version = "5.47.1"

create_role = var.stack_create

Expand Down

0 comments on commit 140344a

Please sign in to comment.