From 3e0ffff0a2a9a416eb4bed3ccd552c03782cc11f Mon Sep 17 00:00:00 2001 From: Steve McGhee Date: Wed, 20 May 2020 22:36:26 +0000 Subject: [PATCH] location location location --- terraform/00_everything.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/terraform/00_everything.tf b/terraform/00_everything.tf index 133c87d..8579f2a 100644 --- a/terraform/00_everything.tf +++ b/terraform/00_everything.tf @@ -119,13 +119,13 @@ resource "google_container_cluster" "gke" { # Set the zone by grabbing the result of the random_shuffle above. It # returns a list so we have to pull the first element off. If you're looking # at this and thinking "huh terraform syntax looks a clunky" you are NOT WRONG - zone = element(random_shuffle.zone.result, 0) + location = element(random_shuffle.zone.result, 0) # Using an embedded resource to define the node pool. Another # option would be to create the node pool as a separate resource and link it # to this cluster. There are tradeoffs to each approach. # - # The embedded resource is convenient but if you change it you have to tear + # The embedded resource is convenient but if you change it you have to te # down the entire cluster and rebuild it. A separate resource could be # modified independent of the cluster without the cluster needing to be torn # down.