AWS Security ChangesHomeSearch

AWS eks documentation change

Service: eks · 2025-06-25 · Documentation low

File: eks/latest/userguide/creating-an-add-on.md

Summary

Updated Kubernetes version references from 1.32 to 1.33 in multiple command examples and instructions

Security assessment

The changes are routine documentation updates to reflect the latest supported Kubernetes version (1.33). No security vulnerabilities, fixes, or security feature enhancements are mentioned in the context of these version number updates.

Diff

diff --git a/eks/latest/userguide/creating-an-add-on.md b/eks/latest/userguide/creating-an-add-on.md
index c16d1009e..e84dcd9bf 100644
--- a//eks/latest/userguide/creating-an-add-on.md
+++ b//eks/latest/userguide/creating-an-add-on.md
@@ -47 +47 @@ You can create an Amazon EKS add-on using `eksctl`, the AWS Management Console,
-  1. View the names of add-ons available for a cluster version. Replace `1.32` with the version of your cluster.
+  1. View the names of add-ons available for a cluster version. Replace `1.33` with the version of your cluster.
@@ -49 +49 @@ You can create an Amazon EKS add-on using `eksctl`, the AWS Management Console,
-        eksctl utils describe-addon-versions --kubernetes-version 1.32 | grep AddonName
+        eksctl utils describe-addon-versions --kubernetes-version 1.33 | grep AddonName
@@ -64 +64 @@ An example output is as follows.
-  2. View the versions available for the add-on that you would like to create. Replace `1.32` with the version of your cluster. Replace `name-of-addon` with the name of the add-on you want to view the versions for. The name must be one of the names returned in the previous step.
+  2. View the versions available for the add-on that you would like to create. Replace `1.33` with the version of your cluster. Replace `name-of-addon` with the name of the add-on you want to view the versions for. The name must be one of the names returned in the previous step.
@@ -66 +66 @@ An example output is as follows.
-        eksctl utils describe-addon-versions --kubernetes-version 1.32 --name name-of-addon | grep AddonVersion
+        eksctl utils describe-addon-versions --kubernetes-version 1.33 --name name-of-addon | grep AddonVersion
@@ -78 +78 @@ The following output is an example of what is returned for the add-on named `vpc
-                eksctl utils describe-addon-versions --kubernetes-version 1.32 --name name-of-addon | grep ProductUrl
+                eksctl utils describe-addon-versions --kubernetes-version 1.33 --name name-of-addon | grep ProductUrl
@@ -179 +179 @@ NOTE: Retaining the default role name enables EKS to pre-select the role for add
-  2. Determine which add-ons are available. You can see all available add-ons, their type, and their publisher. You can also see the URL for add-ons that are available through the AWS Marketplace. Replace `1.32` with the version of your cluster.
+  2. Determine which add-ons are available. You can see all available add-ons, their type, and their publisher. You can also see the URL for add-ons that are available through the AWS Marketplace. Replace `1.33` with the version of your cluster.
@@ -181 +181 @@ NOTE: Retaining the default role name enables EKS to pre-select the role for add
-        aws eks describe-addon-versions --kubernetes-version 1.32 \
+        aws eks describe-addon-versions --kubernetes-version 1.33 \
@@ -205 +205 @@ Your output might be different. In this example output, there are three differen
-  3. You can see which versions are available for each add-on. Replace `1.32` with the version of your cluster and replace `vpc-cni` with the name of an add-on returned in the previous step.
+  3. You can see which versions are available for each add-on. Replace `1.33` with the version of your cluster and replace `vpc-cni` with the name of an add-on returned in the previous step.
@@ -207 +207 @@ Your output might be different. In this example output, there are three differen
-        aws eks describe-addon-versions --kubernetes-version 1.32 --addon-name vpc-cni \
+        aws eks describe-addon-versions --kubernetes-version 1.33 --addon-name vpc-cni \