mirror of
https://github.com/puppetmaster/typhoon.git
synced 2024-12-26 19:59:34 +01:00
5e70d7e2c8
* Recommend Terraform v0.13.x * Support automatic install of poseidon's provider plugins * Update tutorial docs for Terraform v0.13.x * Add migration guide for Terraform v0.13.x (best-effort) * Require Terraform v0.12.26+ (migration compatibility) * Require `terraform-provider-ct` v0.6.1 * Require `terraform-provider-matchbox` v0.4.1 * Require `terraform-provider-digitalocean` v1.20+ Related: * https://www.hashicorp.com/blog/announcing-hashicorp-terraform-0-13/ * https://www.terraform.io/upgrade-guides/0-13.html * https://registry.terraform.io/providers/poseidon/ct/latest * https://registry.terraform.io/providers/poseidon/matchbox/latest
15 lines
258 B
HCL
15 lines
258 B
HCL
# Terraform version and plugin versions
|
|
|
|
terraform {
|
|
required_version = ">= 0.12.26, < 0.14.0"
|
|
required_providers {
|
|
aws = ">= 2.23, <= 4.0"
|
|
template = "~> 2.1"
|
|
|
|
ct = {
|
|
source = "poseidon/ct"
|
|
version = "~> 0.6.1"
|
|
}
|
|
}
|
|
}
|