Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/multi_external_vpn_gateways/prod.tf
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ resource "google_compute_external_vpn_gateway" "external_gateway2" {

module "vpn-ha-to-onprem" {
source = "terraform-google-modules/vpn/google//modules/vpn_ha"
version = "~> 5.0"
version = "~> 6.0"

project_id = var.prod_project_id
region = var.region
Expand Down
6 changes: 3 additions & 3 deletions examples/multi_tunnels/mgmt.tf
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ resource "google_compute_router" "cr-uscentral1-to-prod-vpc-02" {

module "vpn-gw-us-ce1-mgt-prd-internal-01" {
source = "terraform-google-modules/vpn/google"
version = "~> 5.0"
version = "~> 6.0"

project_id = var.mgt_project_id
network = var.mgt_network
Expand All @@ -59,7 +59,7 @@ module "vpn-gw-us-ce1-mgt-prd-internal-01" {

module "vpn-gw-us-ce1-mgt-prd-internal-02" {
source = "terraform-google-modules/vpn/google"
version = "~> 5.0"
version = "~> 6.0"

project_id = var.mgt_project_id
network = var.mgt_network
Expand All @@ -79,7 +79,7 @@ module "vpn-gw-us-ce1-mgt-prd-internal-02" {

module "vpn-gw-us-we1-mgt-prd-internal" {
source = "terraform-google-modules/vpn/google"
version = "~> 5.0"
version = "~> 6.0"

project_id = var.mgt_project_id
network = var.mgt_network
Expand Down
6 changes: 3 additions & 3 deletions examples/multi_tunnels/prod.tf
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ resource "google_compute_router" "cr-uscentral1-to-mgt-vpc-02" {

module "vpn-gw-us-ce1-prd-mgt-internal-01" {
source = "terraform-google-modules/vpn/google"
version = "~> 5.0"
version = "~> 6.0"

project_id = var.prod_project_id
network = var.prod_network
Expand All @@ -59,7 +59,7 @@ module "vpn-gw-us-ce1-prd-mgt-internal-01" {

module "vpn-gw-us-ce1-prd-mgt-internal-02" {
source = "terraform-google-modules/vpn/google"
version = "~> 5.0"
version = "~> 6.0"

project_id = var.prod_project_id
network = var.prod_network
Expand All @@ -79,7 +79,7 @@ module "vpn-gw-us-ce1-prd-mgt-internal-02" {

module "vpn-gw-us-we1-prd-mgt-internal" {
source = "terraform-google-modules/vpn/google"
version = "~> 5.0"
version = "~> 6.0"

project_id = var.prod_project_id
network = var.prod_network
Expand Down
2 changes: 1 addition & 1 deletion examples/single_tunnels/mgmt.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

module "vpn-gw-us-we1-mgt-prd-internal" {
source = "terraform-google-modules/vpn/google"
version = "~> 5.0"
version = "~> 6.0"

project_id = var.mgt_project_id
network = var.mgt_network
Expand Down
2 changes: 1 addition & 1 deletion examples/single_tunnels/prod.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

module "vpn-gw-us-we1-prd-mgt-internal" {
source = "terraform-google-modules/vpn/google"
version = "~> 5.0"
version = "~> 6.0"

project_id = var.prod_project_id
network = var.prod_network
Expand Down
2 changes: 1 addition & 1 deletion examples/vpn_ha/mgmt.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
##To Prod VPC
module "vpn-ha-to-prod" {
source = "terraform-google-modules/vpn/google//modules/vpn_ha"
version = "~> 5.0"
version = "~> 6.0"

project_id = var.mgt_project_id
region = var.region
Expand Down
2 changes: 1 addition & 1 deletion examples/vpn_ha/prod.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
##To MGMT VPC
module "vpn-ha-to-mgmt" {
source = "terraform-google-modules/vpn/google//modules/vpn_ha"
version = "~> 5.0"
version = "~> 6.0"

project_id = var.prod_project_id
region = var.region
Expand Down
Loading