From 48e576c513c53a8372689185fe4dda7e665ca8be Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 5 Jul 2024 23:43:21 +0000 Subject: [PATCH] chore(deps): update terraform terraform-aws-modules/eks/aws to v20.17.2 --- 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 38ae270..6d598ca 100644 --- a/terraform/foundation-stack/main.tf +++ b/terraform/foundation-stack/main.tf @@ -68,7 +68,7 @@ module "vpc" { module "eks" { source = "terraform-aws-modules/eks/aws" - version = "20.8.5" + version = "20.17.2" cluster_name = var.stack_name cluster_version = "1.29" create = var.stack_create @@ -122,7 +122,7 @@ module "eks" { module "karpenter" { count = var.stack_create ? 1 : 0 source = "terraform-aws-modules/eks/aws//modules/karpenter" - version = "20.8.5" + version = "20.17.2" cluster_name = module.eks.cluster_name enable_irsa = true enable_pod_identity = false # TODO: PR because it doesn't work in govcloud