mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-05-02 05:14:32 +02:00
* fix: Disable creation of cluster security group rules that map to node security group when `create_node_security_group` = `false` * feat: Update Fargate example to run only Fargate and show disabling of both cluster and node security groups * fix: Ensure CoreDNS changes are made ahead of install
19 lines
305 B
HCL
19 lines
305 B
HCL
terraform {
|
|
required_version = ">= 0.13.1"
|
|
|
|
required_providers {
|
|
aws = {
|
|
source = "hashicorp/aws"
|
|
version = ">= 3.72"
|
|
}
|
|
helm = {
|
|
source = "hashicorp/helm"
|
|
version = ">= 2.7"
|
|
}
|
|
null = {
|
|
source = "hashicorp/null"
|
|
version = ">= 3.0"
|
|
}
|
|
}
|
|
}
|