mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-01-17 00:57:28 +01:00
Additional support for Terraform v0.13 and aws v3! - The update to the vpc module in examples was, strictly speaking, unnecessary but it adds the terraform block with supported versions. - Update for iam module in the example was very necessary to support new versions - Workaround for "Provider produced inconsistent final plan" when creating ASGs at the same time as the cluster. See https://github.com/terraform-providers/terraform-provider-aws/issues/14085 for full details. - Blacklist 0.13.0 as it was too strict when migrating from aws v2 to v3 about dropped attributes.
13 lines
248 B
HCL
13 lines
248 B
HCL
terraform {
|
|
required_version = ">= 0.12.9, != 0.13.0"
|
|
|
|
required_providers {
|
|
aws = ">= 2.55.0"
|
|
local = ">= 1.4"
|
|
null = ">= 2.1"
|
|
template = ">= 2.1"
|
|
random = ">= 2.1"
|
|
kubernetes = ">= 1.11.1"
|
|
}
|
|
}
|