From 7894c9a7d56fd79f6ea9d57b0d1653d0f0bad03f Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 14 Dec 2024 16:03:59 +0000 Subject: [PATCH] chore(deps): update terraform terraform-aws-modules/eks/aws to v20.31.4 --- terraform/foundation-stack/main.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/terraform/foundation-stack/main.tf b/terraform/foundation-stack/main.tf index 61b091f..4622dbc 100644 --- a/terraform/foundation-stack/main.tf +++ b/terraform/foundation-stack/main.tf @@ -94,7 +94,7 @@ resource "aws_vpc_endpoint" "eks_vpc_endpoints" { module "eks" { source = "terraform-aws-modules/eks/aws" - version = "20.24.3" + version = "20.31.4" cluster_name = var.stack_name cluster_version = "1.29" create = var.stack_create @@ -148,7 +148,7 @@ module "eks" { module "karpenter" { count = var.stack_create ? 1 : 0 source = "terraform-aws-modules/eks/aws//modules/karpenter" - version = "20.24.3" + version = "20.31.4" cluster_name = module.eks.cluster_name enable_irsa = true enable_pod_identity = false # TODO: PR because it doesn't work in govcloud (-> it works now since 8/24)