mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-01-16 00:34:31 +01:00
* fix: Update AWS provider version to support `AL2023_*` AMI types * fix: Ensure the cluster service CIDR is passed to the AL2023 user data where its required
19 lines
304 B
HCL
19 lines
304 B
HCL
terraform {
|
|
required_version = ">= 1.3"
|
|
|
|
required_providers {
|
|
aws = {
|
|
source = "hashicorp/aws"
|
|
version = ">= 5.40"
|
|
}
|
|
helm = {
|
|
source = "hashicorp/helm"
|
|
version = ">= 2.7"
|
|
}
|
|
kubectl = {
|
|
source = "alekc/kubectl"
|
|
version = ">= 2.0"
|
|
}
|
|
}
|
|
}
|