Skip to content

Commit 05e3e46

Browse files
committed
Explicitly make additional_zones argument a list
1 parent 68dcd99 commit 05e3e46

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cluster_zonal.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ resource "google_container_cluster" "zonal_primary" {
2424
project = "${var.project_id}"
2525

2626
zone = "${var.zones[0]}"
27-
additional_zones = "${slice(var.zones,1,length(var.zones))}"
27+
additional_zones = ["${slice(var.zones,1,length(var.zones))}"]
2828

2929
network = "${data.google_compute_network.gke_network.self_link}"
3030
subnetwork = "${data.google_compute_subnetwork.gke_subnetwork.self_link}"

0 commit comments

Comments
 (0)