File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -96,19 +96,19 @@ variable "node_pool_type" {
9696variable "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
102102variable "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
108108variable "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
114114variable "kube_dashboard_enabled" {
You can’t perform that action at this time.
0 commit comments