Skip to content

Commit

Permalink
chore(deps): update terraform terraform-aws-modules/iam/aws to v5.40.0
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Jul 5, 2024
1 parent 0e99c9c commit f8a7ddc
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 @@ -141,7 +141,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.39.1"
version = "5.40.0"

create_role = var.stack_create

Expand All @@ -160,7 +160,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.39.1"
version = "5.40.0"

create_role = var.stack_create

Expand Down Expand Up @@ -201,7 +201,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.39.1"
version = "5.40.0"
create_role = var.stack_create

role_name = "${var.stack_name}-s3-csi-driver-role"
Expand All @@ -221,7 +221,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.39.1"
version = "5.40.0"

create_role = var.stack_create

Expand All @@ -242,7 +242,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.39.1"
version = "5.40.0"

create_role = var.stack_create

Expand Down

0 comments on commit f8a7ddc

Please sign in to comment.