From d345379cdeaea73b16ab4e54f520de87c871003c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 5 Aug 2024 21:30:10 -0700 Subject: [PATCH] Bump terraform-aws-modules/iam/aws from 5.41.0 to 5.42.0 (#408) Bumps [terraform-aws-modules/iam/aws](https://github.com/terraform-aws-modules/terraform-aws-iam) from 5.41.0 to 5.42.0. - [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.41.0...v5.42.0) --- updated-dependencies: - dependency-name: terraform-aws-modules/iam/aws dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- alb.tf | 2 +- efs.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/alb.tf b/alb.tf index 9573b48..69bf674 100644 --- a/alb.tf +++ b/alb.tf @@ -1,6 +1,6 @@ module "iam_assumable_role_alb" { source = "terraform-aws-modules/iam/aws//modules/iam-assumable-role-with-oidc" - version = "5.41.0" + version = "5.42.0" create_role = true role_name = "${var.environment_name}-${local.alb_name}" provider_url = replace(aws_iam_openid_connect_provider.cluster.url, "https://", "") diff --git a/efs.tf b/efs.tf index eda9cf3..ca907c7 100644 --- a/efs.tf +++ b/efs.tf @@ -2,7 +2,7 @@ module "iam_assumable_role_efs_csi" { count = var.efs_enabled ? 1 : 0 source = "terraform-aws-modules/iam/aws//modules/iam-assumable-role-with-oidc" - version = "5.41.0" + version = "5.42.0" create_role = true role_name = "${var.environment_name}-AmazonEFSCSIDriverPolicy" provider_url = replace(aws_iam_openid_connect_provider.cluster.url, "https://", "")