Skip to content

Commit 6eac9ab

Browse files
committed
fix: remove unnessary firewall source IPs
The two IP removed are for Network Load Balancer. From the document of HTTPs Load Balancer, they are not needed. https://cloud.google.com/load-balancing/docs/https/https-load-balancer-example?authuser=0#configuring_firewall_rules
1 parent 7ae6a0b commit 6eac9ab

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

main.tf

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -187,9 +187,7 @@ resource "google_compute_firewall" "default-hc" {
187187
network = var.firewall_networks[count.index]
188188
source_ranges = [
189189
"130.211.0.0/22",
190-
"35.191.0.0/16",
191-
"209.85.152.0/22",
192-
"209.85.204.0/22"
190+
"35.191.0.0/16"
193191
]
194192
target_tags = var.target_tags
195193

0 commit comments

Comments
 (0)