Skip to content

Commit

Permalink
#3 Disabled auto scaler by default
Browse files Browse the repository at this point in the history
  • Loading branch information
sesispla committed Feb 22, 2020
1 parent 6946158 commit 384a5f1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -96,19 +96,19 @@ variable "node_pool_type" {
variable "auto_scaling_enable" {
type = bool
description = "(Optional) Should the Kubernetes Auto Scaler be enabled for this Node Pool? Defaults to false."
default = true
default = false
}

variable "auto_scaling_min_count" {
type = number
description = "(Optional) The minimum number of nodes which should exist in this Node Pool. If specified this must be between 1 and 100"
default = 2
default = 0
}

variable "auto_scaling_max_count" {
type = number
description = "(Optional) The maximum number of nodes which should exist in this Node Pool. If specified this must be between 1 and 100."
default = 16
default = 0
}

variable "kube_dashboard_enabled" {
Expand Down

0 comments on commit 384a5f1

Please sign in to comment.