Skip to content

Commit

Permalink
Make region and zone mandatory and consistent.
Browse files Browse the repository at this point in the history
  • Loading branch information
xingao267 committed Apr 12, 2020
1 parent 25eabc0 commit 2361e00
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ variable "network_project_id" {

variable "gke_region" {
description = "The region to host the clusters in"
default = "us-central1"
type = string
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
project_id = "heroes-hat-dev-data"
storage_location = "us"
cloudsql_region = "us-central1"
cloudsql_zone = "a"
cloudsql_failover_zone = "b"
cloudsql_region = "us-east1"
cloudsql_zone = "b"
cloudsql_failover_zone = "c"
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ variable "project_id" {

variable "gke_region" {
description = "The region where the network and subnets will be created for the GKE clusters"
default = "us-central1"
type = string
}

Expand Down

0 comments on commit 2361e00

Please sign in to comment.