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

Commit

Permalink
[examples] lb-http module to 1.0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
danisla committed Sep 26, 2018
1 parent 487cd5d commit 8cfd424
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions examples/lb-http-nat-gateway/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ module "mig1" {
}

module "nat-gateway" {
// source = "github.com/GoogleCloudPlatform/terraform-google-nat-gateway"
source = "../../"
region = "${var.region}"
zone = "${var.zone}"
Expand All @@ -79,7 +78,8 @@ module "nat-gateway" {
}

module "gce-lb-http" {
source = "github.com/GoogleCloudPlatform/terraform-google-lb-http"
source = "GoogleCloudPlatform/lb-http/google"
version = "1.0.10"
name = "${var.network_name}-lb"
target_tags = ["${var.network_name}-mig"]
firewall_networks = ["${google_compute_subnetwork.default.name}"]
Expand Down
2 changes: 1 addition & 1 deletion examples/multiple-nat-environments/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ module "production-nat-gateway" {

module "gce-lb-http" {
source = "GoogleCloudPlatform/lb-http/google"
version = "1.0.8"
version = "1.0.10"
name = "${var.production_network_name}-lb"
target_tags = ["allow-staging", "allow-production"]
firewall_networks = ["${google_compute_network.staging.name}", "${google_compute_network.production.name}"]
Expand Down

0 comments on commit 8cfd424

Please sign in to comment.