We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e1557a commit 40a407dCopy full SHA for 40a407d
integration-tests/terraform/eks/main.tf
@@ -41,7 +41,7 @@ resource "aws_eks_node_group" "this" {
41
min_size = 1
42
}
43
44
- ami_type = "AL2_x86_64"
+ ami_type = var.k8s_version >= "1.33" ? "AL2023_x86_64_STANDARD" : "AL2_x86_64"
45
capacity_type = "ON_DEMAND"
46
disk_size = 20
47
instance_types = ["t3.medium"]
0 commit comments