Files
terraform-aws-eks/versions.tf
Bryant Biggs dfe41141c2 fix: Update AWS provider version to support AL2023_* AMI types; ensure AL2023 user data receives cluster service CIDR (#2960)
* 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
2024-03-08 15:25:14 -05:00

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"
}
}
}