Fixes documentation error in compute_router_nat (#3517)

This commit is contained in:
Ken Leidal 2019-05-01 16:51:04 -04:00 committed by Riley Karson
parent 5ea4adf6f1
commit 934279fc62

View File

@ -86,7 +86,8 @@ resource "google_compute_router_nat" "advanced-nat" {
nat_ips = ["${google_compute_address.address.*.self_link}"]
source_subnetwork_ip_ranges_to_nat = "LIST_OF_SUBNETWORKS"
subnetwork {
name = "${google_compute_subnetwork.subnetwork.self_link}"
name = "${google_compute_subnetwork.subnetwork.self_link}"
source_ip_ranges_to_nat = ["ALL_IP_RANGES"]
}
}
```