1
0
mirror of synced 2025-12-19 18:05:44 -05:00

fix syntax

This commit is contained in:
Rob Morgan
2019-06-26 12:54:00 +02:00
parent 81b187580c
commit b8e137b0bd

View File

@@ -58,7 +58,7 @@ resource "google_service_networking_connection" "private_vpc_connection" {
provider = "google-beta"
network = google_compute_network.private_network.self_link
service = "servicenetworking.googleapis.com"
reserved_peering_ranges = ["${google_compute_global_address.private_ip_address.name}"]
reserved_peering_ranges = [google_compute_global_address.private_ip_address.name]
}
# ------------------------------------------------------------------------------