Skip to content

Commit 23d64fc

Browse files
committed
change oidc version
1 parent 53f341a commit 23d64fc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

alb.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module "iam_assumable_role_alb" {
22
source = "terraform-aws-modules/iam/aws//modules/iam-assumable-role-with-oidc"
3-
version = "6.2.1"
3+
version = "5.44.0"
44
create_role = true
55
role_name = "${var.environment_name}-${local.alb_name}"
66
provider_url = replace(aws_iam_openid_connect_provider.cluster.url, "https://", "")

efs.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
module "iam_assumable_role_efs_csi" {
33
count = var.efs_enabled ? 1 : 0
44
source = "terraform-aws-modules/iam/aws//modules/iam-assumable-role-with-oidc"
5-
version = "6.2.1"
5+
version = "5.44.0"
66
create_role = true
77
role_name = "${var.environment_name}-AmazonEFSCSIDriverPolicy"
88
provider_url = replace(aws_iam_openid_connect_provider.cluster.url, "https://", "")

0 commit comments

Comments
 (0)