Skip to content

Commit

Permalink
chore(deps): update tf modules
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Jan 11, 2024
1 parent eb29749 commit 055a0b3
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions 04-Instance-Group/network.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

module "network" {
source = "terraform-google-modules/network/google"
version = "~> 7.0"
version = "~> 9.0"
project_id = module.project_iam_bindings.projects[0]
network_name = "lab04-vpc"
routing_mode = "GLOBAL"
Expand All @@ -31,7 +31,7 @@ module "network" {

module "cloud_nat" {
source = "terraform-google-modules/cloud-nat/google"
version = "~> 2.2"
version = "~> 5.0"
project_id = module.project_iam_bindings.projects[0]
region = var.region
create_router = true
Expand Down
4 changes: 2 additions & 2 deletions 05-Load-Balancer/mig.tf
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ resource "google_service_account_iam_member" "service_account_user" {

module "instance_template" {
source = "terraform-google-modules/vm/google//modules/instance_template"
version = "~> 8.0"
version = "~> 10.0"
project_id = module.project_iam_bindings.projects[0]
subnetwork = module.network.subnets_self_links[0]
source_image_family = "debian-10"
Expand All @@ -47,7 +47,7 @@ module "instance_template" {

module "managed_instance_group" {
source = "terraform-google-modules/vm/google//modules/mig"
version = "~> 8.0"
version = "~> 10.0"
project_id = module.project_iam_bindings.projects[0]
region = var.region
target_size = 2
Expand Down
4 changes: 2 additions & 2 deletions 05-Load-Balancer/network.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

module "network" {
source = "terraform-google-modules/network/google"
version = "~> 7.0"
version = "~> 9.0"
project_id = module.project_iam_bindings.projects[0]
network_name = "lab05-vpc"
routing_mode = "GLOBAL"
Expand All @@ -31,7 +31,7 @@ module "network" {

module "cloud_nat" {
source = "terraform-google-modules/cloud-nat/google"
version = "~> 2.2"
version = "~> 5.0"
project_id = module.project_iam_bindings.projects[0]
region = var.region
create_router = true
Expand Down
2 changes: 1 addition & 1 deletion other/terraform-codelab/lab-networking/network.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# # Create the network
module "vpc" {
source = "terraform-google-modules/network/google"
version = "~> 7.0"
version = "~> 9.0"

# Give the network a name and project
project_id = google_project_service.compute.project
Expand Down

0 comments on commit 055a0b3

Please sign in to comment.