From 92ee9697f8c26bb4348c1a338837488abb5beb2b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 6 May 2026 13:51:05 +0000 Subject: [PATCH] build(deps): update terraform-aws-modules/iam/aws requirement from ~> 5.0 to ~> 6.6 Updates the requirements on [terraform-aws-modules/iam/aws](https://github.com/terraform-aws-modules/terraform-aws-iam) to permit the latest version. - [Release notes](https://github.com/terraform-aws-modules/terraform-aws-iam/releases) - [Changelog](https://github.com/terraform-aws-modules/terraform-aws-iam/blob/master/CHANGELOG.md) - [Commits](https://github.com/terraform-aws-modules/terraform-aws-iam/compare/v5.0.0...v6.6.0) --- updated-dependencies: - dependency-name: terraform-aws-modules/iam/aws dependency-version: 6.6.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- terraform/components/eks/irsa.tf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/terraform/components/eks/irsa.tf b/terraform/components/eks/irsa.tf index 2c3b4c0..1e9a7c2 100644 --- a/terraform/components/eks/irsa.tf +++ b/terraform/components/eks/irsa.tf @@ -1,6 +1,6 @@ module "vpc_cni_irsa" { source = "terraform-aws-modules/iam/aws//modules/iam-role-for-service-accounts-eks" - version = "~> 5.0" + version = "~> 6.6" role_name = "${var.cluster_name}-vpc-cni" attach_vpc_cni_policy = true @@ -16,7 +16,7 @@ module "vpc_cni_irsa" { module "ebs_csi_irsa" { source = "terraform-aws-modules/iam/aws//modules/iam-role-for-service-accounts-eks" - version = "~> 5.0" + version = "~> 6.6" role_name = "${var.cluster_name}-ebs-csi" attach_ebs_csi_policy = true @@ -31,7 +31,7 @@ module "ebs_csi_irsa" { module "lb_controller_irsa" { source = "terraform-aws-modules/iam/aws//modules/iam-role-for-service-accounts-eks" - version = "~> 5.0" + version = "~> 6.6" role_name = "${var.cluster_name}-lb-controller" attach_load_balancer_controller_policy = true @@ -46,7 +46,7 @@ module "lb_controller_irsa" { module "external_dns_irsa" { source = "terraform-aws-modules/iam/aws//modules/iam-role-for-service-accounts-eks" - version = "~> 5.0" + version = "~> 6.6" role_name = "${var.cluster_name}-external-dns" attach_external_dns_policy = true