Fix GCP controller_type and worker_type vars

This commit is contained in:
Dalton Hubble 2018-04-11 22:19:58 -07:00
parent 2eaf858c5c
commit c8eabc2af4
1 changed files with 2 additions and 2 deletions

View File

@ -34,13 +34,13 @@ variable "worker_count" {
description = "Number of workers"
}
variable controller_type {
variable "controller_type" {
type = "string"
default = "n1-standard-1"
description = "Machine type for controllers (see `gcloud compute machine-types list`)"
}
variable worker_type {
variable "worker_type" {
type = "string"
default = "n1-standard-1"
description = "Machine type for controllers (see `gcloud compute machine-types list`)"