feat: Add support for newly released AL2023 accelerated AMI types (#3177)

This commit is contained in:
Bryant Biggs
2024-10-12 16:44:24 +00:00
committed by GitHub
parent eb78240617
commit b2a8617794
34 changed files with 58 additions and 47 deletions

View File

@@ -3,7 +3,7 @@ module "eks_al2" {
version = "~> 20.0"
cluster_name = "${local.name}-al2"
cluster_version = "1.30"
cluster_version = "1.31"
# EKS Addons
cluster_addons = {

View File

@@ -3,7 +3,7 @@ module "eks_al2023" {
version = "~> 20.0"
cluster_name = "${local.name}-al2023"
cluster_version = "1.30"
cluster_version = "1.31"
# EKS Addons
cluster_addons = {

View File

@@ -3,7 +3,7 @@ module "eks_bottlerocket" {
version = "~> 20.0"
cluster_name = "${local.name}-bottlerocket"
cluster_version = "1.30"
cluster_version = "1.31"
# EKS Addons
cluster_addons = {

View File

@@ -4,7 +4,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = ">= 5.61"
version = ">= 5.70"
}
}
}