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

Commit 487cd5d

Browse files
authored
Merge pull request #94 from danisla/mig-1.1.14
mig module to 1.1.14
2 parents ed53152 + 8ef239d commit 487cd5d

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ And add the tag `${module.nat.routing_tag_regional}` to your instances without e
2323
```ruby
2424
module "mig" {
2525
source = "GoogleCloudPlatform/managed-instance-group/google"
26-
version = "1.1.13"
26+
version = "1.1.14"
2727
region = "us-central1"
2828
zone = "us-central1-a"
2929
name = "testnat"

examples/ha-nat-gateway/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ module "nat-zone-3" {
8080

8181
module "mig1" {
8282
source = "GoogleCloudPlatform/managed-instance-group/google"
83-
version = "1.1.13"
83+
version = "1.1.14"
8484
region = "${var.region}"
8585
zone = "${var.zone1}"
8686
name = "${var.network_name}-mig"

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ data "template_file" "group1-startup-script" {
5353

5454
module "mig1" {
5555
source = "GoogleCloudPlatform/managed-instance-group/google"
56-
version = "1.1.13"
56+
version = "1.1.14"
5757
region = "${var.region}"
5858
zone = "${var.zone}"
5959
name = "${var.network_name}-mig"

examples/multiple-nat-environments/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ resource "google_compute_subnetwork" "staging" {
6666

6767
module "staging-mig1" {
6868
source = "GoogleCloudPlatform/managed-instance-group/google"
69-
version = "1.1.13"
69+
version = "1.1.14"
7070
region = "${var.region}"
7171
zone = "${var.zone}"
7272
name = "${var.staging_mig_name}"
@@ -106,7 +106,7 @@ resource "google_compute_subnetwork" "production" {
106106

107107
module "production-mig1" {
108108
source = "GoogleCloudPlatform/managed-instance-group/google"
109-
version = "1.1.13"
109+
version = "1.1.14"
110110
region = "${var.region}"
111111
zone = "${var.zone}"
112112
name = "${var.production_mig_name}"

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ locals {
4646

4747
module "nat-gateway" {
4848
source = "GoogleCloudPlatform/managed-instance-group/google"
49-
version = "1.1.13"
49+
version = "1.1.14"
5050
module_enabled = "${var.module_enabled}"
5151
project = "${var.project}"
5252
region = "${var.region}"

0 commit comments

Comments
 (0)