diff --git a/locals.tf b/locals.tf index f88c0f7..e709b9e 100644 --- a/locals.tf +++ b/locals.tf @@ -1,7 +1,7 @@ # Copyright (c) Tetrate, Inc 2022 All Rights Reserved. locals { - default_version = coalesce(var.distribution_version, "1.12.2") + default_version = coalesce(var.distribution_version, "1.12.9") default_helm_config = { name = "undefined" diff --git a/main.tf b/main.tf index 0fdcbb5..8f96a27 100644 --- a/main.tf +++ b/main.tf @@ -2,7 +2,7 @@ module "base" { count = var.install_base ? 1 : 0 - source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons/helm-addon?ref=v3.5.0" + source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons/helm-addon?ref=v4.7.0" manage_via_gitops = var.manage_via_gitops helm_config = local.base_helm_config irsa_config = null @@ -11,7 +11,7 @@ module "base" { module "cni" { count = var.install_cni ? 1 : 0 - source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons/helm-addon?ref=v3.5.0" + source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons/helm-addon?ref=v4.7.0" manage_via_gitops = var.manage_via_gitops helm_config = local.cni_helm_config irsa_config = null @@ -22,7 +22,7 @@ module "cni" { module "istiod" { count = var.install_istiod ? 1 : 0 - source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons/helm-addon?ref=v3.5.0" + source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons/helm-addon?ref=v4.7.0" manage_via_gitops = var.manage_via_gitops helm_config = local.istiod_helm_config irsa_config = null @@ -33,7 +33,7 @@ module "istiod" { module "gateway" { count = var.install_gateway ? 1 : 0 - source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons/helm-addon?ref=v3.5.0" + source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons/helm-addon?ref=v4.7.0" manage_via_gitops = var.manage_via_gitops helm_config = local.gateway_helm_config irsa_config = null