mirror of
https://github.com/puppetmaster/typhoon.git
synced 2024-12-26 19:59:34 +01:00
a8fd21d250
* Update `null` provider to allow use of v3.1.x releases, instead of being stuck on v2.1.2 * Update min versions in terraform-render-boostrap https://github.com/poseidon/terraform-render-bootstrap/pull/287 * Document the recommended versions of Terraform cloud providers
15 lines
254 B
HCL
15 lines
254 B
HCL
# Terraform version and plugin versions
|
|
|
|
terraform {
|
|
required_version = ">= 0.13.0, < 2.0.0"
|
|
required_providers {
|
|
aws = ">= 2.23, <= 4.0"
|
|
template = "~> 2.2"
|
|
|
|
ct = {
|
|
source = "poseidon/ct"
|
|
version = "~> 0.9"
|
|
}
|
|
}
|
|
}
|