specify source range

This commit is contained in:
gregory hendrickson
2023-03-15 16:29:06 -07:00
parent 2d69f92c9e
commit cd4f21579b

View File

@@ -7,6 +7,8 @@ resource "google_compute_firewall" "fe_firewall" {
ports = ["8080"]
}
source_ranges = ["0.0.0.0/0"]
target_tags = ["frontend"]
}
@@ -19,5 +21,7 @@ resource "google_compute_firewall" "be_firewall" {
ports = ["8081-8082"]
}
source_ranges = ["0.0.0.0/0"]
target_tags = ["backend"]
}
}