Add support for google provider 6.x (#2536)

* Add support for google provider 6.x

Co-authored-by: Ludovico Magnocavallo <ludomagno@google.com>
Co-authored-by: Wiktor Niesiobędzki <wiktorn@google.com>
Co-authored-by: Julio Castillo <jccb@google.com>
This commit is contained in:
Simone Ruffilli
2024-09-05 12:35:58 +02:00
committed by GitHub
parent 21f85a837c
commit 7f8a02a405
130 changed files with 1571 additions and 440 deletions

View File

@@ -180,6 +180,9 @@ module "cloud_run" {
}
vpc_connector_create = {
ip_cidr_range = "10.10.10.0/28"
throughput = {
max = 300
}
vpc_self_link = var.vpc.self_link
}
}

View File

@@ -12,18 +12,18 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# Fabric release: v34.0.0
# Fabric release: v35.0.0
terraform {
required_version = ">= 1.7.4"
required_providers {
google = {
source = "hashicorp/google"
version = ">= 5.43.1, < 6.0.0" # tftest
version = ">= 6.1.0, < 7.0.0" # tftest
}
google-beta = {
source = "hashicorp/google-beta"
version = ">= 5.43.1, < 6.0.0" # tftest
version = ">= 6.1.0, < 7.0.0" # tftest
}
}
}