provider/google: only set additional zones on read if it had been set in the config

pull/11650/head
Dana Hoffman 9 years ago
parent d2aaa4557d
commit 3efe2c942c

@ -444,7 +444,10 @@ func resourceContainerClusterRead(d *schema.ResourceData, meta interface{}) erro
d.Set("name", cluster.Name)
d.Set("zone", cluster.Zone)
d.Set("additional_zones", cluster.Locations)
if _, ok := d.GetOk("additional_zones"); ok {
d.Set("additional_zones", cluster.Locations)
}
d.Set("endpoint", cluster.Endpoint)
masterAuth := []map[string]interface{}{

Loading…
Cancel
Save