Skip to content

Commit ec14a6d

Browse files
authored
Merge pull request #6 from sesispla/master
#3 Disable auto scaler by default
2 parents 93e23d4 + 384a5f1 commit ec14a6d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

variables.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,19 +96,19 @@ variable "node_pool_type" {
9696
variable "auto_scaling_enable" {
9797
type = bool
9898
description = "(Optional) Should the Kubernetes Auto Scaler be enabled for this Node Pool? Defaults to false."
99-
default = true
99+
default = false
100100
}
101101

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

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

114114
variable "kube_dashboard_enabled" {

0 commit comments

Comments
 (0)