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

Commit

Permalink
Merge pull request #94 from danisla/mig-1.1.14
Browse files Browse the repository at this point in the history
mig module to 1.1.14
  • Loading branch information
danisla authored Sep 26, 2018
2 parents ed53152 + 8ef239d commit 487cd5d
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ And add the tag `${module.nat.routing_tag_regional}` to your instances without e
```ruby
module "mig" {
source = "GoogleCloudPlatform/managed-instance-group/google"
version = "1.1.13"
version = "1.1.14"
region = "us-central1"
zone = "us-central1-a"
name = "testnat"
Expand Down
2 changes: 1 addition & 1 deletion examples/ha-nat-gateway/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ module "nat-zone-3" {

module "mig1" {
source = "GoogleCloudPlatform/managed-instance-group/google"
version = "1.1.13"
version = "1.1.14"
region = "${var.region}"
zone = "${var.zone1}"
name = "${var.network_name}-mig"
Expand Down
2 changes: 1 addition & 1 deletion examples/lb-http-nat-gateway/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ data "template_file" "group1-startup-script" {

module "mig1" {
source = "GoogleCloudPlatform/managed-instance-group/google"
version = "1.1.13"
version = "1.1.14"
region = "${var.region}"
zone = "${var.zone}"
name = "${var.network_name}-mig"
Expand Down
4 changes: 2 additions & 2 deletions examples/multiple-nat-environments/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ resource "google_compute_subnetwork" "staging" {

module "staging-mig1" {
source = "GoogleCloudPlatform/managed-instance-group/google"
version = "1.1.13"
version = "1.1.14"
region = "${var.region}"
zone = "${var.zone}"
name = "${var.staging_mig_name}"
Expand Down Expand Up @@ -106,7 +106,7 @@ resource "google_compute_subnetwork" "production" {

module "production-mig1" {
source = "GoogleCloudPlatform/managed-instance-group/google"
version = "1.1.13"
version = "1.1.14"
region = "${var.region}"
zone = "${var.zone}"
name = "${var.production_mig_name}"
Expand Down
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ locals {

module "nat-gateway" {
source = "GoogleCloudPlatform/managed-instance-group/google"
version = "1.1.13"
version = "1.1.14"
module_enabled = "${var.module_enabled}"
project = "${var.project}"
region = "${var.region}"
Expand Down

0 comments on commit 487cd5d

Please sign in to comment.