Skip to content
This repository was archived by the owner on Dec 10, 2021. It is now read-only.

Commit 8cfd424

Browse files
committed
[examples] lb-http module to 1.0.10
1 parent 487cd5d commit 8cfd424

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

examples/lb-http-nat-gateway/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@ module "mig1" {
7070
}
7171

7272
module "nat-gateway" {
73-
// source = "github.com/GoogleCloudPlatform/terraform-google-nat-gateway"
7473
source = "../../"
7574
region = "${var.region}"
7675
zone = "${var.zone}"
@@ -79,7 +78,8 @@ module "nat-gateway" {
7978
}
8079

8180
module "gce-lb-http" {
82-
source = "github.com/GoogleCloudPlatform/terraform-google-lb-http"
81+
source = "GoogleCloudPlatform/lb-http/google"
82+
version = "1.0.10"
8383
name = "${var.network_name}-lb"
8484
target_tags = ["${var.network_name}-mig"]
8585
firewall_networks = ["${google_compute_subnetwork.default.name}"]

examples/multiple-nat-environments/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ module "production-nat-gateway" {
132132

133133
module "gce-lb-http" {
134134
source = "GoogleCloudPlatform/lb-http/google"
135-
version = "1.0.8"
135+
version = "1.0.10"
136136
name = "${var.production_network_name}-lb"
137137
target_tags = ["allow-staging", "allow-production"]
138138
firewall_networks = ["${google_compute_network.staging.name}", "${google_compute_network.production.name}"]

0 commit comments

Comments
 (0)