Skip to content

Commit

Permalink
fix!: update terraform-google-modules/network/google to v8.0 (#1082)
Browse files Browse the repository at this point in the history
  • Loading branch information
apeabody committed Jan 29, 2024
1 parent 5d808b1 commit 6d8e106
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion 0-bootstrap/modules/cb-private-pool/network.tf
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ resource "google_compute_network_peering_routes_config" "peering_routes" {

module "firewall_rules" {
source = "terraform-google-modules/network/google//modules/firewall-rules"
version = "~> 7.0"
version = "~> 8.0"
count = var.private_worker_pool.enable_network_peering ? 1 : 0

project_id = var.project_id
Expand Down
4 changes: 2 additions & 2 deletions 0-bootstrap/modules/tfc-agent-gke/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ resource "random_string" "suffix" {

module "network" {
source = "terraform-google-modules/network/google"
version = "~> 5.2"
version = "~> 8.0"

project_id = var.project_id
network_name = var.network_name
Expand Down Expand Up @@ -370,7 +370,7 @@ resource "google_compute_firewall" "allow_private_api_egress" {

module "private_service_connect" {
source = "terraform-google-modules/network/google//modules/private-service-connect"
version = "~> 5.2"
version = "~> 8.0"

project_id = var.project_id
dns_code = "dz-${local.vpc_name}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

module "private_service_connect" {
source = "terraform-google-modules/network/google//modules/private-service-connect"
version = "~> 7.0"
version = "~> 8.0"

project_id = var.project_id
dns_code = "dz-${var.environment_code}-shared-base"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

module "private_service_connect" {
source = "terraform-google-modules/network/google//modules/private-service-connect"
version = "~> 7.0"
version = "~> 8.0"

project_id = var.project_id
dns_code = "dz-${var.environment_code}-shared-restricted"
Expand Down
2 changes: 1 addition & 1 deletion 3-networks-hub-and-spoke/modules/base_shared_vpc/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ data "google_compute_network" "vpc_base_net_hub" {

module "peering" {
source = "terraform-google-modules/network/google//modules/network-peering"
version = "~> 7.0"
version = "~> 8.0"
count = var.mode == "spoke" ? 1 : 0

prefix = "np"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

module "private_service_connect" {
source = "terraform-google-modules/network/google//modules/private-service-connect"
version = "~> 7.0"
version = "~> 8.0"

project_id = var.project_id
dns_code = "dz-${var.environment_code}-shared-base"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ data "google_compute_network" "vpc_restricted_net_hub" {

module "peering" {
source = "terraform-google-modules/network/google//modules/network-peering"
version = "~> 7.0"
version = "~> 8.0"
count = var.mode == "spoke" ? 1 : 0

prefix = "np"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

module "private_service_connect" {
source = "terraform-google-modules/network/google//modules/private-service-connect"
version = "~> 7.0"
version = "~> 8.0"

project_id = var.project_id
dns_code = "dz-${var.environment_code}-shared-restricted"
Expand Down

0 comments on commit 6d8e106

Please sign in to comment.