Skip to content

Commit

Permalink
fix: set autoscaling min resources to 0 (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexouzounis authored Apr 28, 2020
1 parent fe24662 commit faacb59
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ variable "cluster_autoscaling_profile" {

variable "cluster_autoscaling_min_cpu" {
type = number
default = 4
default = 0
}

variable "cluster_autoscaling_max_cpu" {
Expand All @@ -220,7 +220,7 @@ variable "cluster_autoscaling_max_cpu" {

variable "cluster_autoscaling_min_memory" {
type = number
default = 14
default = 0
}

variable "cluster_autoscaling_max_memory" {
Expand Down

0 comments on commit faacb59

Please sign in to comment.