From c8eabc2af470bd9144b2f155256028be77fa1699 Mon Sep 17 00:00:00 2001 From: Dalton Hubble Date: Wed, 11 Apr 2018 22:19:58 -0700 Subject: [PATCH] Fix GCP controller_type and worker_type vars --- google-cloud/container-linux/kubernetes/variables.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/google-cloud/container-linux/kubernetes/variables.tf b/google-cloud/container-linux/kubernetes/variables.tf index abcaec84..aff3f0e8 100644 --- a/google-cloud/container-linux/kubernetes/variables.tf +++ b/google-cloud/container-linux/kubernetes/variables.tf @@ -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`)"