mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-01-16 00:34:31 +01:00
* 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
HCL
12 lines
198 B
HCL
terraform {
|
|
required_version = ">= 0.12.2"
|
|
|
|
required_providers {
|
|
aws = ">= 2.31.0"
|
|
local = ">= 1.2"
|
|
null = ">= 2.1"
|
|
template = ">= 2.1"
|
|
random = ">= 2.1"
|
|
}
|
|
}
|