Skip to content

Commit

Permalink
fix(deps)!: Update Terraform terraform-google-modules/network/google …
Browse files Browse the repository at this point in the history
…to v9 (#178)
  • Loading branch information
renovate-bot authored Mar 26, 2024
1 parent dc0815e commit a391262
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions examples/cloud_run_vpc_connector/network.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

module "vpc" {
source = "terraform-google-modules/network/google"
version = "~> 7.5"
version = "~> 9.0"

project_id = var.project_id
network_name = "cloud-run-vpc"
Expand All @@ -36,7 +36,7 @@ module "vpc" {

module "serverless_connector" {
source = "terraform-google-modules/network/google//modules/vpc-serverless-connector-beta"
version = "~> 7.5"
version = "~> 9.0"

project_id = var.project_id
vpc_connectors = [{
Expand Down
2 changes: 1 addition & 1 deletion modules/secure-serverless-harness/network.tf
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ locals {
module "network" {
for_each = local.network_projects
source = "terraform-google-modules/network/google"
version = "~> 7.0"
version = "~> 9.0"
project_id = each.value
network_name = local.network_name
shared_vpc_host = var.use_shared_vpc
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ module "private_service_connect" {
for_each = module.network

source = "terraform-google-modules/network/google//modules/private-service-connect"
version = "~> 6.0"
version = "~> 9.0"
project_id = each.value.project_id
network_self_link = each.value.network_self_link
private_service_connect_ip = var.private_service_connect_ip
Expand Down
2 changes: 1 addition & 1 deletion modules/secure-serverless-net/firewall.tf
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ module "firewall_rules" {
count = var.connector_on_host_project ? 0 : 1

source = "terraform-google-modules/network/google//modules/firewall-rules"
version = "~> 7.0"
version = "~> 9.0"

project_id = var.vpc_project_id
network_name = var.shared_vpc_name
Expand Down

0 comments on commit a391262

Please sign in to comment.