1
0
Fork 0
mirror of https://github.com/poseidon/typhoon synced 2024-06-02 04:46:10 +02:00
typhoon/aws/container-linux/kubernetes/versions.tf
Dalton Hubble f6ce12766b Allow terraform-provider-aws v3.0+ plugin
* 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
2020-08-09 12:39:26 -07:00

12 lines
220 B
HCL

# Terraform version and plugin versions
terraform {
required_version = "~> 0.12.6"
required_providers {
aws = ">= 2.23, <= 4.0"
ct = "~> 0.4"
template = "~> 2.1"
null = "~> 2.1"
}
}