mirror of
https://github.com/terraform-aws-modules/terraform-aws-eks.git
synced 2025-09-09 19:32:58 +08:00
c90b33780c
* Increase minimum terraform version to include yamlencode https://github.com/hashicorp/terraform/blob/master/CHANGELOG.md#0122-june-12-2019 * Update Changelog
12 lines
198 B
Terraform
12 lines
198 B
Terraform
terraform {
|
|
required_version = ">= 0.12.2"
|
|
|
|
required_providers {
|
|
aws = ">= 2.31.0"
|
|
local = ">= 1.2"
|
|
null = ">= 2.1"
|
|
template = ">= 2.1"
|
|
random = ">= 2.1"
|
|
}
|
|
}
|