mirror of
https://github.com/puppetmaster/typhoon.git
synced 2024-12-26 22:19:33 +01:00
435fa196da
* 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
14 lines
242 B
HCL
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"
|
|
}
|
|
}
|
|
}
|