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.