diff --git a/build/terraform b/build/terraform index b4a0e9652b33..75f54dce7c27 160000 --- a/build/terraform +++ b/build/terraform @@ -1 +1 @@ -Subproject commit b4a0e9652b33803ecfb478298418a3bb98a15e1a +Subproject commit 75f54dce7c27b2544d3286228270346bc2651e8a diff --git a/build/terraform-beta b/build/terraform-beta index a73852e61850..9ee90c18a5f1 160000 --- a/build/terraform-beta +++ b/build/terraform-beta @@ -1 +1 @@ -Subproject commit a73852e61850e6207087cfa58d40e0c00a5ed3e8 +Subproject commit 9ee90c18a5f16b2a0a4ed9086ef39922fc10b34b diff --git a/third_party/terraform/website/docs/r/compute_router_nat.html.markdown b/third_party/terraform/website/docs/r/compute_router_nat.html.markdown index ca4c7d8eb357..eb5af3b729ef 100644 --- a/third_party/terraform/website/docs/r/compute_router_nat.html.markdown +++ b/third_party/terraform/website/docs/r/compute_router_nat.html.markdown @@ -19,21 +19,21 @@ A simple NAT configuration: enable NAT for all Subnetworks associated with the Network associated with the given Router. ```hcl -resource "google_compute_network" "network" { +resource "google_compute_network" "default" { name = "my-network" } -resource "google_compute_subnetwork" "subnetwork" { +resource "google_compute_subnetwork" "default" { name = "my-subnet" - network = "${google_compute_network.network.self_link}" + network = "${google_compute_network.default.self_link}" ip_cidr_range = "10.0.0.0/16" region = "us-central1" } resource "google_compute_router" "router" { name = "router" - region = "${google_compute_subnetwork.foobar.region}" - network = "${google_compute_network.foobar.self_link}" + region = "${google_compute_subnetwork.default.region}" + network = "${google_compute_network.default.self_link}" bgp { asn = 64514 } @@ -52,21 +52,21 @@ A production-like configuration: enable NAT for one Subnetwork and use a list of static external IP address. ```hcl -resource "google_compute_network" "network" { +resource "google_compute_network" "default" { name = "my-network" } -resource "google_compute_subnetwork" "subnetwork" { +resource "google_compute_subnetwork" "default" { name = "my-subnet" - network = "${google_compute_network.network.self_link}" + network = "${google_compute_network.default.self_link}" ip_cidr_range = "10.0.0.0/16" region = "us-central1" } resource "google_compute_router" "router" { name = "router" - region = "${google_compute_subnetwork.foobar.region}" - network = "${google_compute_network.foobar.self_link}" + region = "${google_compute_subnetwork.default.region}" + network = "${google_compute_network.default.self_link}" bgp { asn = 64514 }