From af7cf11417572d36ba7b22b335f78109c403bac0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Jun 2024 17:44:30 -0700 Subject: [PATCH] Bump terraform-aws-modules/iam/aws from 5.39.0 to 5.39.1 (#392) Bumps [terraform-aws-modules/iam/aws](https://github.com/terraform-aws-modules/terraform-aws-iam) from 5.39.0 to 5.39.1. - [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.39.0...v5.39.1) --- updated-dependencies: - dependency-name: terraform-aws-modules/iam/aws dependency-type: direct:production update-type: version-update:semver-patch ... 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 b04f3f6..7697156 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.39.0" + version = "5.39.1" 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 2d50b9f..e73bc72 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.39.0" + version = "5.39.1" create_role = true role_name = "${var.environment_name}-AmazonEFSCSIDriverPolicy" provider_url = replace(aws_iam_openid_connect_provider.cluster.url, "https://", "")