Skip to content
Closed
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 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 = "~> 13.0"
project_id = module.project_iam_bindings.projects[0]
network_name = "lab04-vpc"
routing_mode = "GLOBAL"
Expand Down
2 changes: 1 addition & 1 deletion 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 = "~> 13.0"
project_id = module.project_iam_bindings.projects[0]
network_name = "lab05-vpc"
routing_mode = "GLOBAL"
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 = "~> 13.0"

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