Reduce range for private services to a /24

This commit is contained in:
Tom Alexander 2021-07-12 23:55:17 -04:00
parent d8182298bc
commit a6c408c3c6
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE

View File

@ -28,7 +28,7 @@ resource "google_compute_global_address" "private_ip_address" {
name = "private-ip-address"
purpose = "VPC_PEERING"
address_type = "INTERNAL"
prefix_length = 16
prefix_length = 24
network = google_compute_network.private_network.id
}