mirror of
https://github.com/puppetmaster/typhoon.git
synced 2024-12-26 17:49:32 +01:00
fa3184fb9c
* Allow terraform-provider-ct versions v0.6+ (e.g. v0.7.1) Before, only v0.6.x point updates were allowed * Update terraform-provider-ct to v0.7.1 in docs * READ the docs before updating terraform-provider-ct, as changing worker user-data is handled differently by different cloud platforms
15 lines
245 B
HCL
15 lines
245 B
HCL
# Terraform version and plugin versions
|
|
|
|
terraform {
|
|
required_version = "~> 0.13.0"
|
|
required_providers {
|
|
aws = ">= 2.23, <= 4.0"
|
|
template = "~> 2.1"
|
|
|
|
ct = {
|
|
source = "poseidon/ct"
|
|
version = "~> 0.6"
|
|
}
|
|
}
|
|
}
|