Skip to content

Commit 0ba6b7f

Browse files
committed
Updating network variables, versions
1 parent 06e99d1 commit 0ba6b7f

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

gcn.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
module "network" {
44
count = var.shim || var.shared_vpc ? 0 : 1
55
source = "terraform-google-modules/network/google"
6-
version = "7.3.0"
6+
version = "9.3.0"
77
description = "Truefoundry network for ${var.cluster_name}"
88
project_id = var.project_id
99
network_name = local.network_name
@@ -84,7 +84,7 @@ resource "time_sleep" "wait_2_mins" {
8484
module "cloud_router" {
8585
count = var.shim || var.shared_vpc ? 0 : 1
8686
source = "terraform-google-modules/cloud-router/google"
87-
version = "6.0.1"
87+
version = "6.2.0"
8888
description = "Truefoundry NAT router for ${var.cluster_name}"
8989
name = local.router_name
9090
project = var.project_id

versions.tf

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
terraform {
2-
required_version = ">= 1.4"
2+
required_version = "~> 1.4"
33
required_providers {
44
google = {
55
source = "hashicorp/google"
6-
version = "4.81.0"
6+
version = "~> 6.0"
77
}
88
time = {
99
source = "hashicorp/time"
10-
version = "0.12.1"
10+
version = "~> 0.12"
1111
}
1212
}
1313
}

0 commit comments

Comments
 (0)