Skip to content

Commit 325c3fe

Browse files
authored
docs: Update doc references to 1.33; remove AL2 examples since 1.33+ does not support AL2 (#3402)
1 parent 4c0a8fc commit 325c3fe

File tree

18 files changed

+17
-86
lines changed

18 files changed

+17
-86
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ module "eks" {
3333
version = "~> 20.31"
3434
3535
cluster_name = "example"
36-
cluster_version = "1.31"
36+
cluster_version = "1.33"
3737
3838
# Optional
3939
cluster_endpoint_public_access = true
@@ -82,7 +82,7 @@ module "eks" {
8282
version = "~> 20.31"
8383
8484
cluster_name = "example"
85-
cluster_version = "1.31"
85+
cluster_version = "1.33"
8686
8787
cluster_addons = {
8888
coredns = {}
@@ -149,7 +149,7 @@ module "eks" {
149149
version = "~> 20.0"
150150
151151
cluster_name = "my-cluster"
152-
cluster_version = "1.31"
152+
cluster_version = "1.33"
153153
154154
bootstrap_self_managed_addons = false
155155
cluster_addons = {

docs/compute_resources.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ Refer to the [Self Managed Node Group documentation](https://docs.aws.amazon.com
113113
1. The `self-managed-node-group` uses the latest AWS EKS Optimized AMI (Linux) for the given Kubernetes version by default:
114114

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

126126
```hcl
127-
cluster_version = "1.31"
127+
cluster_version = "1.33"
128128
129129
self_managed_node_groups = {
130130
bottlerocket = {

examples/eks-auto-mode/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ data "aws_availability_zones" "available" {
1212

1313
locals {
1414
name = "ex-${basename(path.cwd)}"
15-
cluster_version = "1.31"
15+
cluster_version = "1.33"
1616
region = "us-west-2"
1717

1818
vpc_cidr = "10.0.0.0/16"

examples/eks-hybrid-nodes/ami/variables.pkr.hcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ variable "ami_name_prefix" {
77
variable "eks_version" {
88
description = "The EKS cluster version associated with the AMI created"
99
type = string
10-
default = "1.31"
10+
default = "1.33"
1111
}
1212

1313
variable "credential_provider" {

examples/eks-hybrid-nodes/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ locals {
2020
name = "ex-${basename(path.cwd)}"
2121
region = "us-west-2"
2222

23-
cluster_version = "1.31"
23+
cluster_version = "1.33"
2424

2525
tags = {
2626
Test = local.name

examples/eks-managed-node-group/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

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

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

examples/eks-managed-node-group/eks-al2.tf

Lines changed: 0 additions & 34 deletions
This file was deleted.

examples/eks-managed-node-group/eks-al2023.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module "eks_al2023" {
33
version = "~> 20.0"
44

55
cluster_name = "${local.name}-al2023"
6-
cluster_version = "1.31"
6+
cluster_version = "1.33"
77

88
# EKS Addons
99
cluster_addons = {

examples/eks-managed-node-group/eks-bottlerocket.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module "eks_bottlerocket" {
33
version = "~> 20.0"
44

55
cluster_name = "${local.name}-bottlerocket"
6-
cluster_version = "1.31"
6+
cluster_version = "1.33"
77

88
# EKS Addons
99
cluster_addons = {

examples/karpenter/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ module "eks" {
5555
source = "../.."
5656

5757
cluster_name = local.name
58-
cluster_version = "1.31"
58+
cluster_version = "1.33"
5959

6060
# Gives Terraform identity admin access to cluster which will
6161
# allow deploying resources (Karpenter) into the cluster

0 commit comments

Comments
 (0)