Relax the provider version constraint for Google Cloud

* Allow upgrading to the v5.x Google Cloud Terrform Provider
* Relax the version constraint to ease future compatibility,
though it does allow users to upgrade prematurely
This commit is contained in:
Dalton Hubble
2023-10-29 21:05:49 -07:00
parent 39af942f4d
commit 435fa196da
5 changed files with 8 additions and 4 deletions

View File

@ -3,7 +3,7 @@
terraform {
required_version = ">= 0.13.0, < 2.0.0"
required_providers {
google = ">= 2.19, < 5.0"
google = ">= 2.19"
null = ">= 2.1"
ct = {
source = "poseidon/ct"

View File

@ -3,7 +3,7 @@
terraform {
required_version = ">= 0.13.0, < 2.0.0"
required_providers {
google = ">= 2.19, < 5.0"
google = ">= 2.19"
ct = {
source = "poseidon/ct"
version = "~> 0.11"