Skip to content

Commit cbc6918

Browse files
committed
Pin EKS module to ~> 21.23.0 to avoid breaking v21.24.0
v21.24.0 (released 2026-06-24) raised its required AWS provider floor to >= 6.52, conflicting with this repo's pin of <= 6.46.0 and breaking terraform init --upgrade in the cluster stack. Pinning to the 21.23.x band keeps the provider floor at >= 6.42 (compatible with <= 6.46.0).
1 parent c5acbef commit cbc6918

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • platform/infra/terraform/cluster

platform/infra/terraform/cluster/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module "eks" {
33
#checkov:skip=CKV_TF_2:We are using version control for those modules
44
for_each = var.clusters
55
source = "terraform-aws-modules/eks/aws"
6-
version = "~> 21.15"
6+
version = "~> 21.23.0"
77

88
name = each.value.name
99
kubernetes_version = each.value.kubernetes_version

0 commit comments

Comments
 (0)