Skip to content

Commit

Permalink
chore(deps): Update Terraform terraform-google-modules/network/google…
Browse files Browse the repository at this point in the history
… to v8
  • Loading branch information
renovate[bot] authored Nov 11, 2023
1 parent 6ccf1cc commit 5c70105
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion codelabs/simple/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ resource "google_project_service" "compute" {
# Create the network
module "vpc" {
source = "terraform-google-modules/network/google"
version = "~> 7.0"
version = "~> 8.0"

# Give the network a name and project
project_id = google_project_service.compute.project
Expand Down
2 changes: 1 addition & 1 deletion examples/basic_vpc_peering/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
# [START vpc_peering_create]
module "peering1" {
source = "terraform-google-modules/network/google//modules/network-peering"
version = "~> 7.0"
version = "~> 8.0"
local_network = var.local_network # Replace with self link to VPC network "foobar" in quotes
peer_network = var.peer_network # Replace with self link to VPC network "other" in quotes
}
Expand Down
2 changes: 1 addition & 1 deletion examples/private_service_connect/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ module "private_service_connect" {

module "simple_vpc" {
source = "terraform-google-modules/network/google"
version = "~> 7.0"
version = "~> 8.0"
project_id = var.project_id
network_name = "my-custom-network"
mtu = 1460
Expand Down
2 changes: 1 addition & 1 deletion examples/routes/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
# [START vpc_static_route_create]
module "google_compute_route" {
source = "terraform-google-modules/network/google//modules/routes"
version = "~> 7.0"
version = "~> 8.0"
project_id = var.project_id # Replace this with your project ID in quotes
network_name = "default"

Expand Down
2 changes: 1 addition & 1 deletion examples/simple_project/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
# [START vpc_custom_create]
module "test-vpc-module" {
source = "terraform-google-modules/network/google"
version = "~> 7.0"
version = "~> 8.0"
project_id = var.project_id # Replace this with your project ID in quotes
network_name = "my-custom-mode-network"
mtu = 1460
Expand Down
4 changes: 2 additions & 2 deletions examples/submodule_vpc_serverless_connector/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ resource "google_project_service" "vpcaccess-api" {
# [START vpc_serverless_connector]
module "test-vpc-module" {
source = "terraform-google-modules/network/google"
version = "~> 7.0"
version = "~> 8.0"
project_id = var.project_id # Replace this with your project ID in quotes
network_name = "my-serverless-network"
mtu = 1460
Expand All @@ -40,7 +40,7 @@ module "test-vpc-module" {

module "serverless-connector" {
source = "terraform-google-modules/network/google//modules/vpc-serverless-connector-beta"
version = "~> 7.0"
version = "~> 8.0"
project_id = var.project_id
vpc_connectors = [{
name = "central-serverless"
Expand Down

0 comments on commit 5c70105

Please sign in to comment.