1
0
Fork 0
mirror of https://github.com/poseidon/typhoon synced 2024-04-28 12:55:06 +02:00
typhoon/google-cloud/flatcar-linux/kubernetes/versions.tf
Dalton Hubble 435fa196da 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
2023-10-30 09:05:06 -07:00

14 lines
242 B
HCL

# Terraform version and plugin versions
terraform {
required_version = ">= 0.13.0, < 2.0.0"
required_providers {
google = ">= 2.19"
null = ">= 2.1"
ct = {
source = "poseidon/ct"
version = "~> 0.11"
}
}
}