Skip to content

Commit efdc77c

Browse files
committed
revert previous syntax changes
1 parent 0e55fde commit efdc77c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

main.tf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -243,8 +243,8 @@ resource "google_compute_firewall" "default-ssh" {
243243
ports = ["22"]
244244
}
245245

246-
"source_ranges" = ["${var.ssh_source_ranges}"]
247-
"target_tags" = ["allow-ssh"]
246+
source_ranges = ["${var.ssh_source_ranges}"]
247+
target_tags = ["allow-ssh"]
248248
}
249249

250250
resource "google_compute_health_check" "mig-health-check" {
@@ -274,8 +274,8 @@ resource "google_compute_firewall" "mig-health-check" {
274274
ports = ["${var.hc_port == "" ? var.service_port : var.hc_port}"]
275275
}
276276

277-
"source_ranges" = ["130.211.0.0/22", "35.191.0.0/16"]
278-
"target_tags" = ["${var.target_tags}"]
277+
source_ranges = ["130.211.0.0/22", "35.191.0.0/16"]
278+
target_tags = ["${var.target_tags}"]
279279
}
280280

281281
data "google_compute_instance_group" "zonal" {

0 commit comments

Comments
 (0)