1
0
Fork 0
mirror of https://github.com/poseidon/typhoon synced 2024-05-28 02:16:21 +02:00

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

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`)"