Skip to content

Commit

Permalink
Fix duplication of default values
Browse files Browse the repository at this point in the history
  • Loading branch information
flamarion committed Oct 15, 2024
1 parent 22e4cf0 commit 75253f7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 9 deletions.
8 changes: 4 additions & 4 deletions modules/app_eks/cluster_autoscaler/cluster_autoscaler.tf
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
data "aws_region" "current" {}

resource "helm_release" "cluster-autoscaler" {
chart = "cluster-autoscaler"
name = "cluster-autoscaler"
repository = "https://kubernetes.github.io/autoscaler"
namespace = "cluster-autoscaler"
chart = "cluster-autoscaler"
name = "cluster-autoscaler"
repository = "https://kubernetes.github.io/autoscaler"
namespace = "cluster-autoscaler"
create_namespace = true

set {
Expand Down
5 changes: 0 additions & 5 deletions modules/app_eks/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -161,29 +161,24 @@ variable "aws_loadbalancer_controller_tags" {
variable "eks_addon_efs_csi_driver_version" {
description = "The version of the EFS CSI driver to install."
type = string
default = "v2.0.7-eksbuild.1"
}

variable "eks_addon_ebs_csi_driver_version" {
description = "The version of the EBS CSI driver to install."
type = string
default = "v1.35.0-eksbuild.1"
}

variable "eks_addon_coredns_version" {
description = "The version of the CoreDNS addon to install."
type = string
default = "v1.11.3-eksbuild.1"
}

variable "eks_addon_kube_proxy_version" {
description = "The version of the kube-proxy addon to install."
type = string
default = "v1.29.7-eksbuild.9"
}

variable "eks_addon_vpc_cni_version" {
description = "The version of the VPC CNI addon to install."
type = string
default = "v1.18.3-eksbuild.3"
}

0 comments on commit 75253f7

Please sign in to comment.