Skip to content

Commit

Permalink
Cherry-Pick terraform bug fixes (#590)
Browse files Browse the repository at this point in the history
**Which issue is resolved by this Pull Request:**
**Description of your changes:**
Update RDS version
#584
Update AWS blueprints - gpu bug
#516

**Testing:**
Cognito-rds-s3 passed `6 passed, 13 warnings in 4594.63s (1:16:34)`
rds-s3 passed `7 passed, 49 warnings in 4490.15s (1:14:50)`

- [ ] Unit tests pass
- [x] e2e tests pass

By submitting this pull request, I confirm that my contribution is made
under the terms of the Apache 2.0 license.

---------

Co-authored-by: Shadab Hussain <shadab.entrepreneur@outlook.com>
Co-authored-by: Gerhard Häring <gh@ghaering.de>
  • Loading branch information
3 people authored Mar 1, 2023
1 parent ec5780d commit 80094bc
Show file tree
Hide file tree
Showing 38 changed files with 48 additions and 48 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ resource "kubernetes_namespace" "kubeflow" {
}

module "kubeflow_secrets_manager_irsa" {
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/irsa?ref=v4.12.0"
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/irsa?ref=v4.12.1"
kubernetes_namespace = kubernetes_namespace.kubeflow.metadata[0].name
create_kubernetes_namespace = false
create_kubernetes_service_account = true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ variable "db_allocated_storage" {
variable "mysql_engine_version" {
type = string
description = "The engine version of MySQL"
default = "8.0.30"
default = "8.0.32"
}

variable "backup_retention_period" {
Expand Down Expand Up @@ -222,4 +222,4 @@ variable "notebook_idleness_check_period" {
description = "How frequently the controller should poll each Notebook to update its LAST_ACTIVITY_ANNOTATION (minutes)"
type = string
default = 5
}
}
4 changes: 2 additions & 2 deletions deployments/cognito-rds-s3/terraform/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ data "aws_ec2_instance_type_offerings" "availability_zones_gpu" {
# EKS Blueprints
#---------------------------------------------------------------
module "eks_blueprints" {
source = "github.com/aws-ia/terraform-aws-eks-blueprints?ref=v4.12.0"
source = "github.com/aws-ia/terraform-aws-eks-blueprints?ref=v4.12.1"

cluster_name = local.cluster_name
cluster_version = local.eks_version
Expand All @@ -129,7 +129,7 @@ module "eks_blueprints" {
}

module "eks_blueprints_kubernetes_addons" {
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons?ref=v4.12.0"
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons?ref=v4.12.1"

eks_cluster_id = module.eks_blueprints.eks_cluster_id
eks_cluster_endpoint = module.eks_blueprints.eks_cluster_endpoint
Expand Down
4 changes: 2 additions & 2 deletions deployments/cognito-rds-s3/terraform/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ variable "db_allocated_storage" {
variable "mysql_engine_version" {
type = string
description = "The engine version of MySQL"
default = "8.0.30"
default = "8.0.32"
}

variable "backup_retention_period" {
Expand Down Expand Up @@ -222,4 +222,4 @@ variable "notebook_idleness_check_period" {
description = "How frequently the controller should poll each Notebook to update its LAST_ACTIVITY_ANNOTATION (minutes)"
type = string
default = 5
}
}
4 changes: 2 additions & 2 deletions deployments/cognito/terraform/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ data "aws_ec2_instance_type_offerings" "availability_zones_gpu" {
# EKS Blueprints
#---------------------------------------------------------------
module "eks_blueprints" {
source = "github.com/aws-ia/terraform-aws-eks-blueprints?ref=v4.12.0"
source = "github.com/aws-ia/terraform-aws-eks-blueprints?ref=v4.12.1"

cluster_name = local.cluster_name
cluster_version = local.eks_version
Expand All @@ -130,7 +130,7 @@ module "eks_blueprints" {
}

module "eks_blueprints_kubernetes_addons" {
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons?ref=v4.12.0"
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons?ref=v4.12.1"

eks_cluster_id = module.eks_blueprints.eks_cluster_id
eks_cluster_endpoint = module.eks_blueprints.eks_cluster_endpoint
Expand Down
4 changes: 2 additions & 2 deletions deployments/rds-s3/terraform/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ data "aws_ec2_instance_type_offerings" "availability_zones_gpu" {
# EKS Blueprints
#---------------------------------------------------------------
module "eks_blueprints" {
source = "github.com/aws-ia/terraform-aws-eks-blueprints?ref=v4.12.0"
source = "github.com/aws-ia/terraform-aws-eks-blueprints?ref=v4.12.1"

cluster_name = local.cluster_name
cluster_version = local.eks_version
Expand All @@ -122,7 +122,7 @@ module "eks_blueprints" {
}

module "eks_blueprints_kubernetes_addons" {
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons?ref=v4.12.0"
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons?ref=v4.12.1"

eks_cluster_id = module.eks_blueprints.eks_cluster_id
eks_cluster_endpoint = module.eks_blueprints.eks_cluster_endpoint
Expand Down
2 changes: 1 addition & 1 deletion deployments/rds-s3/terraform/rds-s3-components/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ resource "kubernetes_namespace" "kubeflow" {
}

module "kubeflow_secrets_manager_irsa" {
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/irsa?ref=v4.12.0"
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/irsa?ref=v4.12.1"
kubernetes_namespace = kubernetes_namespace.kubeflow.metadata[0].name
create_kubernetes_namespace = false
create_kubernetes_service_account = true
Expand Down
4 changes: 2 additions & 2 deletions deployments/rds-s3/terraform/rds-s3-components/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ variable "db_allocated_storage" {
variable "mysql_engine_version" {
type = string
description = "The engine version of MySQL"
default = "8.0.30"
default = "8.0.32"
}

variable "backup_retention_period" {
Expand Down Expand Up @@ -184,4 +184,4 @@ variable "notebook_idleness_check_period" {
description = "How frequently the controller should poll each Notebook to update its LAST_ACTIVITY_ANNOTATION (minutes)"
type = string
default = 5
}
}
4 changes: 2 additions & 2 deletions deployments/rds-s3/terraform/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ variable "db_allocated_storage" {
variable "mysql_engine_version" {
type = string
description = "The engine version of MySQL"
default = "8.0.30"
default = "8.0.32"
}

variable "backup_retention_period" {
Expand Down Expand Up @@ -184,4 +184,4 @@ variable "notebook_idleness_check_period" {
description = "How frequently the controller should poll each Notebook to update its LAST_ACTIVITY_ANNOTATION (minutes)"
type = string
default = 5
}
}
4 changes: 2 additions & 2 deletions deployments/vanilla/terraform/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ data "aws_ec2_instance_type_offerings" "availability_zones_gpu" {
# EKS Blueprints
#---------------------------------------------------------------
module "eks_blueprints" {
source = "github.com/aws-ia/terraform-aws-eks-blueprints?ref=v4.12.0"
source = "github.com/aws-ia/terraform-aws-eks-blueprints?ref=v4.12.1"

cluster_name = local.cluster_name
cluster_version = local.eks_version
Expand All @@ -121,7 +121,7 @@ module "eks_blueprints" {
}

module "eks_blueprints_kubernetes_addons" {
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons?ref=v4.12.0"
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons?ref=v4.12.1"

eks_cluster_id = module.eks_blueprints.eks_cluster_id
eks_cluster_endpoint = module.eks_blueprints.eks_cluster_endpoint
Expand Down
2 changes: 1 addition & 1 deletion iaac/terraform/apps/admission-webhook/main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "helm_addon" {
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons/helm-addon?ref=v4.12.0"
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons/helm-addon?ref=v4.12.1"
helm_config = local.helm_config
addon_context = var.addon_context
}
2 changes: 1 addition & 1 deletion iaac/terraform/apps/central-dashboard/main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "helm_addon" {
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons/helm-addon?ref=v4.12.0"
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons/helm-addon?ref=v4.12.1"
helm_config = local.helm_config
addon_context = var.addon_context
}
2 changes: 1 addition & 1 deletion iaac/terraform/apps/jupyter-web-app/main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "helm_addon" {
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons/helm-addon?ref=v4.12.0"
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons/helm-addon?ref=v4.12.1"
helm_config = local.helm_config
addon_context = var.addon_context
}
2 changes: 1 addition & 1 deletion iaac/terraform/apps/katib/main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "helm_addon" {
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons/helm-addon?ref=v4.12.0"
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons/helm-addon?ref=v4.12.1"
helm_config = local.helm_config
addon_context = var.addon_context
}
2 changes: 1 addition & 1 deletion iaac/terraform/apps/kubeflow-pipelines/main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "helm_addon" {
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons/helm-addon?ref=v4.12.0"
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons/helm-addon?ref=v4.12.1"
helm_config = local.helm_config
addon_context = var.addon_context
}
2 changes: 1 addition & 1 deletion iaac/terraform/apps/models-web-app/main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "helm_addon" {
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons/helm-addon?ref=v4.12.0"
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons/helm-addon?ref=v4.12.1"
helm_config = local.helm_config
addon_context = var.addon_context
}
2 changes: 1 addition & 1 deletion iaac/terraform/apps/notebook-controller/main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "helm_addon" {
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons/helm-addon?ref=v4.12.0"
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons/helm-addon?ref=v4.12.1"
helm_config = local.helm_config
addon_context = var.addon_context
}
4 changes: 2 additions & 2 deletions iaac/terraform/apps/profiles-and-kfam/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ resource "aws_iam_policy" "profile_controller_policy" {
}

module "irsa" {
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/irsa?ref=v4.12.0"
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/irsa?ref=v4.12.1"
kubernetes_namespace = "kubeflow"
create_kubernetes_namespace = false
create_kubernetes_service_account = false
Expand All @@ -19,7 +19,7 @@ module "irsa" {
}

module "helm_addon" {
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons/helm-addon?ref=v4.12.0"
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons/helm-addon?ref=v4.12.1"
helm_config = local.helm_config
addon_context = var.addon_context
}
Expand Down
2 changes: 1 addition & 1 deletion iaac/terraform/apps/tensorboard-controller/main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "helm_addon" {
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons/helm-addon?ref=v4.12.0"
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons/helm-addon?ref=v4.12.1"
helm_config = local.helm_config
addon_context = var.addon_context
}
2 changes: 1 addition & 1 deletion iaac/terraform/apps/tensorboards-web-app/main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "helm_addon" {
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons/helm-addon?ref=v4.12.0"
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons/helm-addon?ref=v4.12.1"
helm_config = local.helm_config
addon_context = var.addon_context
}
2 changes: 1 addition & 1 deletion iaac/terraform/apps/training-operator/main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "helm_addon" {
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons/helm-addon?ref=v4.12.0"
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons/helm-addon?ref=v4.12.1"
helm_config = local.helm_config
addon_context = var.addon_context
}
2 changes: 1 addition & 1 deletion iaac/terraform/apps/volumes-web-app/main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "helm_addon" {
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons/helm-addon?ref=v4.12.0"
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons/helm-addon?ref=v4.12.1"
helm_config = local.helm_config
addon_context = var.addon_context
}
2 changes: 1 addition & 1 deletion iaac/terraform/aws-infra/rds/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ variable "db_allocated_storage" {
variable "mysql_engine_version" {
type = string
description = "The engine version of MySQL"
default = "8.0.30"
default = "8.0.32"
}

variable "backup_retention_period" {
Expand Down
4 changes: 2 additions & 2 deletions iaac/terraform/common/ack-sagemaker-controller/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ resource "aws_iam_policy" "sagemaker_ack_controller_studio_access" {
}

module "irsa" {
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/irsa?ref=v4.12.0"
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/irsa?ref=v4.12.1"
kubernetes_namespace = local.namespace
create_kubernetes_namespace = true
create_kubernetes_service_account = false
Expand All @@ -19,7 +19,7 @@ module "irsa" {
}

module "helm_addon" {
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons/helm-addon?ref=v4.12.0"
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons/helm-addon?ref=v4.12.1"
manage_via_gitops = false
helm_config = local.helm_config
set_values = [
Expand Down
2 changes: 1 addition & 1 deletion iaac/terraform/common/aws-authservice/main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "helm_addon" {
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons/helm-addon?ref=v4.12.0"
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons/helm-addon?ref=v4.12.1"
helm_config = local.helm_config
addon_context = var.addon_context
}
2 changes: 1 addition & 1 deletion iaac/terraform/common/aws-secrets-manager/main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "helm_addon" {
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons/helm-addon?ref=v4.12.0"
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons/helm-addon?ref=v4.12.1"
helm_config = local.helm_config
addon_context = var.addon_context
}
2 changes: 1 addition & 1 deletion iaac/terraform/common/aws-telemetry/main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "helm_addon" {
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons/helm-addon?ref=v4.12.0"
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons/helm-addon?ref=v4.12.1"
helm_config = local.helm_config
addon_context = var.addon_context
}
2 changes: 1 addition & 1 deletion iaac/terraform/common/cluster-local-gateway/main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "helm_addon" {
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons/helm-addon?ref=v4.12.0"
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons/helm-addon?ref=v4.12.1"
helm_config = local.helm_config
addon_context = var.addon_context
}
2 changes: 1 addition & 1 deletion iaac/terraform/common/dex/main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "helm_addon" {
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons/helm-addon?ref=v4.12.0"
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons/helm-addon?ref=v4.12.1"
helm_config = local.helm_config
addon_context = var.addon_context
}
2 changes: 1 addition & 1 deletion iaac/terraform/common/istio/main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "helm_addon" {
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons/helm-addon?ref=v4.12.0"
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons/helm-addon?ref=v4.12.1"
helm_config = local.helm_config
addon_context = var.addon_context
}
2 changes: 1 addition & 1 deletion iaac/terraform/common/knative-eventing/main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "helm_addon" {
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons/helm-addon?ref=v4.12.0"
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons/helm-addon?ref=v4.12.1"
helm_config = local.helm_config
addon_context = var.addon_context
}
2 changes: 1 addition & 1 deletion iaac/terraform/common/knative-serving/main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "helm_addon" {
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons/helm-addon?ref=v4.12.0"
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons/helm-addon?ref=v4.12.1"
helm_config = local.helm_config
addon_context = var.addon_context
}
2 changes: 1 addition & 1 deletion iaac/terraform/common/kserve/main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "helm_addon" {
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons/helm-addon?ref=v4.12.0"
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons/helm-addon?ref=v4.12.1"
helm_config = local.helm_config
addon_context = var.addon_context
}
2 changes: 1 addition & 1 deletion iaac/terraform/common/kubeflow-issuer/main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "helm_addon" {
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons/helm-addon?ref=v4.12.0"
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons/helm-addon?ref=v4.12.1"
helm_config = local.helm_config
addon_context = var.addon_context
}
2 changes: 1 addition & 1 deletion iaac/terraform/common/kubeflow-istio-resources/main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "helm_addon" {
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons/helm-addon?ref=v4.12.0"
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons/helm-addon?ref=v4.12.1"
helm_config = local.helm_config
addon_context = var.addon_context
}
2 changes: 1 addition & 1 deletion iaac/terraform/common/kubeflow-roles/main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "helm_addon" {
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons/helm-addon?ref=v4.12.0"
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons/helm-addon?ref=v4.12.1"
helm_config = local.helm_config
addon_context = var.addon_context
}
2 changes: 1 addition & 1 deletion iaac/terraform/common/oidc-authservice/main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "helm_addon" {
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons/helm-addon?ref=v4.12.0"
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons/helm-addon?ref=v4.12.1"
helm_config = local.helm_config
addon_context = var.addon_context
}
2 changes: 1 addition & 1 deletion iaac/terraform/common/user-namespace/main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "helm_addon" {
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons/helm-addon?ref=v4.12.0"
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons/helm-addon?ref=v4.12.1"
helm_config = local.helm_config
addon_context = var.addon_context
}

0 comments on commit 80094bc

Please sign in to comment.