Skip to content

Commit

Permalink
docs: Update doc references to 1.33; remove AL2 examples since `1.3…
Browse files Browse the repository at this point in the history
…3`+ does not support AL2 (#3402)
  • Loading branch information
Bryant Biggs authored and GitHub committed Jul 1, 2025
1 parent 4c0a8fc commit 325c3fe
Show file tree
Hide file tree
Showing 18 changed files with 17 additions and 86 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ module "eks" {
version = "~> 20.31"
cluster_name = "example"
cluster_version = "1.31"
cluster_version = "1.33"
# Optional
cluster_endpoint_public_access = true
Expand Down Expand Up @@ -82,7 +82,7 @@ module "eks" {
version = "~> 20.31"
cluster_name = "example"
cluster_version = "1.31"
cluster_version = "1.33"
cluster_addons = {
coredns = {}
Expand Down Expand Up @@ -149,7 +149,7 @@ module "eks" {
version = "~> 20.0"
cluster_name = "my-cluster"
cluster_version = "1.31"
cluster_version = "1.33"
bootstrap_self_managed_addons = false
cluster_addons = {
Expand Down
4 changes: 2 additions & 2 deletions docs/compute_resources.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ Refer to the [Self Managed Node Group documentation](https://docs.aws.amazon.com
1. The `self-managed-node-group` uses the latest AWS EKS Optimized AMI (Linux) for the given Kubernetes version by default:

```hcl
cluster_version = "1.31"
cluster_version = "1.33"
# This self managed node group will use the latest AWS EKS Optimized AMI for Kubernetes 1.27
self_managed_node_groups = {
Expand All @@ -124,7 +124,7 @@ Refer to the [Self Managed Node Group documentation](https://docs.aws.amazon.com
2. To use Bottlerocket, specify the `ami_type` as one of the respective `"BOTTLEROCKET_*" types` and supply a Bottlerocket OS AMI:

```hcl
cluster_version = "1.31"
cluster_version = "1.33"
self_managed_node_groups = {
bottlerocket = {
Expand Down
2 changes: 1 addition & 1 deletion examples/eks-auto-mode/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ data "aws_availability_zones" "available" {

locals {
name = "ex-${basename(path.cwd)}"
cluster_version = "1.31"
cluster_version = "1.33"
region = "us-west-2"

vpc_cidr = "10.0.0.0/16"
Expand Down
2 changes: 1 addition & 1 deletion examples/eks-hybrid-nodes/ami/variables.pkr.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ variable "ami_name_prefix" {
variable "eks_version" {
description = "The EKS cluster version associated with the AMI created"
type = string
default = "1.31"
default = "1.33"
}

variable "credential_provider" {
Expand Down
2 changes: 1 addition & 1 deletion examples/eks-hybrid-nodes/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ locals {
name = "ex-${basename(path.cwd)}"
region = "us-west-2"

cluster_version = "1.31"
cluster_version = "1.33"

tags = {
Test = local.name
Expand Down
1 change: 0 additions & 1 deletion examples/eks-managed-node-group/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

Configuration in this directory creates Amazon EKS clusters with EKS Managed Node Groups demonstrating different configurations:

- `eks-al2.tf` demonstrates an EKS cluster using EKS managed node group that utilizes the EKS Amazon Linux 2 optimized AMI
- `eks-al2023.tf` demonstrates an EKS cluster using EKS managed node group that utilizes the EKS Amazon Linux 2023 optimized AMI
- `eks-bottlerocket.tf` demonstrates an EKS cluster using EKS managed node group that utilizes the Bottlerocket EKS optimized AMI

Expand Down
34 changes: 0 additions & 34 deletions examples/eks-managed-node-group/eks-al2.tf

This file was deleted.

2 changes: 1 addition & 1 deletion examples/eks-managed-node-group/eks-al2023.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module "eks_al2023" {
version = "~> 20.0"

cluster_name = "${local.name}-al2023"
cluster_version = "1.31"
cluster_version = "1.33"

# EKS Addons
cluster_addons = {
Expand Down
2 changes: 1 addition & 1 deletion examples/eks-managed-node-group/eks-bottlerocket.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module "eks_bottlerocket" {
version = "~> 20.0"

cluster_name = "${local.name}-bottlerocket"
cluster_version = "1.31"
cluster_version = "1.33"

# EKS Addons
cluster_addons = {
Expand Down
2 changes: 1 addition & 1 deletion examples/karpenter/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ module "eks" {
source = "../.."

cluster_name = local.name
cluster_version = "1.31"
cluster_version = "1.33"

# Gives Terraform identity admin access to cluster which will
# allow deploying resources (Karpenter) into the cluster
Expand Down
1 change: 0 additions & 1 deletion examples/self-managed-node-group/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

Configuration in this directory creates Amazon EKS clusters with self-managed node groups demonstrating different configurations:

- `eks-al2.tf` demonstrates an EKS cluster using self-managed node group that utilizes the EKS Amazon Linux 2 optimized AMI
- `eks-al2023.tf` demonstrates an EKS cluster using self-managed node group that utilizes the EKS Amazon Linux 2023 optimized AMI
- `eks-bottlerocket.tf` demonstrates an EKS cluster using self-managed node group that utilizes the Bottlerocket EKS optimized AMI

Expand Down
33 changes: 0 additions & 33 deletions examples/self-managed-node-group/eks-al2.tf

This file was deleted.

2 changes: 1 addition & 1 deletion examples/self-managed-node-group/eks-al2023.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module "eks_al2023" {
version = "~> 20.0"

cluster_name = "${local.name}-al2023"
cluster_version = "1.31"
cluster_version = "1.33"

# EKS Addons
cluster_addons = {
Expand Down
2 changes: 1 addition & 1 deletion examples/self-managed-node-group/eks-bottlerocket.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module "eks_bottlerocket" {
version = "~> 20.0"

cluster_name = "${local.name}-bottlerocket"
cluster_version = "1.31"
cluster_version = "1.33"

# EKS Addons
cluster_addons = {
Expand Down
2 changes: 1 addition & 1 deletion tests/eks-fargate-profile/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ data "aws_availability_zones" "available" {

locals {
name = "ex-${basename(path.cwd)}"
cluster_version = "1.31"
cluster_version = "1.33"
region = "eu-west-1"

vpc_cidr = "10.0.0.0/16"
Expand Down
2 changes: 1 addition & 1 deletion tests/eks-managed-node-group/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ data "aws_availability_zones" "available" {

locals {
name = "ex-${replace(basename(path.cwd), "_", "-")}"
cluster_version = "1.31"
cluster_version = "1.33"
region = "eu-west-1"

vpc_cidr = "10.0.0.0/16"
Expand Down
2 changes: 1 addition & 1 deletion tests/fast-addons/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ provider "aws" {

locals {
name = "ex-${basename(path.cwd)}"
cluster_version = "1.31"
cluster_version = "1.33"
region = "eu-west-1"

tags = {
Expand Down
2 changes: 1 addition & 1 deletion tests/self-managed-node-group/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ data "aws_availability_zones" "available" {

locals {
name = "ex-${replace(basename(path.cwd), "_", "-")}"
cluster_version = "1.31"
cluster_version = "1.33"
region = "eu-west-1"

vpc_cidr = "10.0.0.0/16"
Expand Down

0 comments on commit 325c3fe

Please sign in to comment.