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 v9
  • Loading branch information
renovate-bot committed Feb 23, 2024
1 parent 345156e commit 4ce1e41
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/standalone_single_project/network.tf
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ locals {
# Private Cluster VPCs
module "vpc" {
source = "terraform-google-modules/network/google"
version = "~> 6.0"
version = "~> 9.0"

project_id = var.project_id
network_name = "${var.app_name}-vpc"
Expand Down
4 changes: 2 additions & 2 deletions test/setup/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ module "gke_project" {
module "vpc" {
for_each = toset(local.envs)
source = "terraform-google-modules/network/google"
version = "~> 7.0"
version = "~> 9.0"

project_id = module.gke_project[each.value].project_id
network_name = "gke-vpc-${each.key}"
Expand Down Expand Up @@ -168,7 +168,7 @@ module "gke_cluster" {
module "vpc_private_cluster" {
for_each = toset(local.envs)
source = "terraform-google-modules/network/google"
version = "~> 7.0"
version = "~> 9.0"

project_id = module.gke_project[each.value].project_id
network_name = "gke-private-vpc-${each.value}"
Expand Down

0 comments on commit 4ce1e41

Please sign in to comment.