location location location

This commit is contained in:
Steve McGhee 2020-05-20 22:36:26 +00:00
parent cbe7e8891d
commit 3e0ffff0a2

View file

@ -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.