From b8a2bb6cd8189d144e85f52422c6bbc6f78196ce Mon Sep 17 00:00:00 2001 From: megan07 Date: Mon, 28 Oct 2019 12:00:19 -0500 Subject: [PATCH] fix container cluster (#2550) --- .../terraform/resources/resource_container_cluster.go.erb | 1 + 1 file changed, 1 insertion(+) diff --git a/third_party/terraform/resources/resource_container_cluster.go.erb b/third_party/terraform/resources/resource_container_cluster.go.erb index 7402be5b8357..597d456658cc 100644 --- a/third_party/terraform/resources/resource_container_cluster.go.erb +++ b/third_party/terraform/resources/resource_container_cluster.go.erb @@ -2855,6 +2855,7 @@ func resourceContainerClusterStateImporter(d *schema.ResourceData, meta interfac clusterName := d.Get("name").(string) + d.Set("location", location) if err := waitForContainerClusterReady(config, project, location, clusterName, d.Timeout(schema.TimeoutCreate)); err != nil { return nil, err }