File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff 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
250250resource "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
281281data "google_compute_instance_group" "zonal" {
You can’t perform that action at this time.
0 commit comments