Skip to content

Commit

Permalink
Merge pull request #6 from sesispla/master
Browse files Browse the repository at this point in the history
#3 Disable auto scaler by default
  • Loading branch information
sesispla authored Feb 22, 2020
2 parents 93e23d4 + 384a5f1 commit ec14a6d
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 ec14a6d

Please sign in to comment.