mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-01-14 15:53:59 +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
300 B
HCL
19 lines
300 B
HCL
terraform {
|
|
required_version = ">= 1.3"
|
|
|
|
required_providers {
|
|
aws = {
|
|
source = "hashicorp/aws"
|
|
version = ">= 5.40"
|
|
}
|
|
tls = {
|
|
source = "hashicorp/tls"
|
|
version = ">= 3.0"
|
|
}
|
|
time = {
|
|
source = "hashicorp/time"
|
|
version = ">= 0.9"
|
|
}
|
|
}
|
|
}
|