mirror of
https://github.com/terraform-aws-modules/terraform-aws-eks.git
synced 2025-09-09 19:32:58 +08:00
3b974d33ad
* feat: Add support for EKS hybrid nodes * feat: Add support for EKS Auto Mode * chore: Update test directory names * chore: Clean up examples and tests * fix: Clean up and last minute changes for GA * chore: Formatting * chore: Bump min required version for new features * fix: Corrects from test/validation on existing clusters * feat: Add policy for custom tags on EKS Auto Mode, validate examples * chore: Expand on `CAM` acronym * chore: Update README to match examples
19 lines
302 B
Terraform
19 lines
302 B
Terraform
terraform {
|
|
required_version = ">= 1.3.2"
|
|
|
|
required_providers {
|
|
aws = {
|
|
source = "hashicorp/aws"
|
|
version = ">= 5.79"
|
|
}
|
|
tls = {
|
|
source = "hashicorp/tls"
|
|
version = ">= 3.0"
|
|
}
|
|
time = {
|
|
source = "hashicorp/time"
|
|
version = ">= 0.9"
|
|
}
|
|
}
|
|
}
|