From 934279fc629e051fcdd2149d6b405b69ead98717 Mon Sep 17 00:00:00 2001 From: Ken Leidal Date: Wed, 1 May 2019 16:51:04 -0400 Subject: [PATCH] Fixes documentation error in compute_router_nat (#3517) --- website/docs/r/compute_router_nat.html.markdown | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/website/docs/r/compute_router_nat.html.markdown b/website/docs/r/compute_router_nat.html.markdown index 9a37b155..cf4bcb5e 100644 --- a/website/docs/r/compute_router_nat.html.markdown +++ b/website/docs/r/compute_router_nat.html.markdown @@ -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"] } } ```