Skip to content

Commit

Permalink
fix: cluster autoscaling default to off (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexouzounis committed May 7, 2020
1 parent faacb59 commit e3b544d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ resource "google_project_service" "project" {

## Modules
module "gke-cluster" {
source = "github.com/ouzi-dev/gke-terraform.git?ref=v0.9.2"
#source = "../gke-terraform"
source = "github.com/ouzi-dev/gke-terraform.git?ref=v0.9.3"
# source = "../gke-terraform"
region = var.gcloud_region
project = var.gcloud_project

Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ variable "monitoring_service" {

# https://cloud.google.com/kubernetes-engine/docs/how-to/node-auto-provisioning
variable "cluster_autoscaling" {
default = true
default = false
}

# OPTIMIZE_UTILIZATION or BALANCED
Expand Down

0 comments on commit e3b544d

Please sign in to comment.