mirror of
https://github.com/puppetmaster/typhoon.git
synced 2024-12-26 07:29:32 +01:00
f6ce12766b
* Typhoon AWS is compatible with terraform-provider-aws v3.x releases * Continue to allow v2.23+, no v3.x specific features are used * Set required provider versions in the worker module, since it can be used independently Related: * https://github.com/terraform-providers/terraform-provider-aws/releases/tag/v3.0.0
10 lines
154 B
HCL
10 lines
154 B
HCL
|
|
terraform {
|
|
required_version = ">= 0.12"
|
|
required_providers {
|
|
aws = ">= 2.23, <= 4.0"
|
|
ct = "~> 0.4"
|
|
template = "~> 2.1"
|
|
}
|
|
}
|