terraform/gcp: Do not create unused subnetworks and Upgrade to latest google provider (#8497)

* terraform/gcp: Do not create unused subnetworks

By default terraform creates a subnetwork in each 39 regions

* terraform/gcp: Upgrade to latest google provider

... where "one of source_tags, source_ranges, or source_service_accounts must be defined"
This commit is contained in:
Mathieu Parent
2022-02-01 18:14:11 +01:00
committed by GitHub
parent eacd55fbca
commit 958bca8800
2 changed files with 9 additions and 1 deletions

View File

@@ -2,7 +2,7 @@ terraform {
required_providers {
google = {
source = "hashicorp/google"
version = "~> 3.48"
version = "~> 4.0"
}
}
}