AWS Security ChangesHomeSearch

AWS eks documentation change

Service: eks · 2026-02-25 · Documentation low

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

Summary

Updated Kubernetes version references from 1.33 to 1.35 in add-on creation examples and documentation.

Security assessment

Routine version update for add-on compatibility checks. No security-related changes or vulnerabilities are referenced in the modifications.

Diff

diff --git a/eks/latest/userguide/creating-an-add-on.md b/eks/latest/userguide/creating-an-add-on.md
index 78433c291..5ad91b6c3 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.33` with the version of your cluster.
+  1. View the names of add-ons available for a cluster version. Replace `1.35` 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.33 | grep AddonName
+        eksctl utils describe-addon-versions --kubernetes-version 1.35 | 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.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.
+  2. View the versions available for the add-on that you would like to create. Replace `1.35` 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.33 --name name-of-addon | grep AddonVersion
+        eksctl utils describe-addon-versions --kubernetes-version 1.35 --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.33 --name name-of-addon | grep ProductUrl
+                eksctl utils describe-addon-versions --kubernetes-version 1.35 --name name-of-addon | grep ProductUrl
@@ -181 +181 @@ 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.33` 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.35` with the version of your cluster.
@@ -183 +183 @@ NOTE: Retaining the default role name enables EKS to pre-select the role for add
-        aws eks describe-addon-versions --kubernetes-version 1.33 \
+        aws eks describe-addon-versions --kubernetes-version 1.35 \
@@ -207 +207 @@ 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.33` 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.35` with the version of your cluster and replace `vpc-cni` with the name of an add-on returned in the previous step.
@@ -209 +209 @@ Your output might be different. In this example output, there are three differen
-        aws eks describe-addon-versions --kubernetes-version 1.33 --addon-name vpc-cni \
+        aws eks describe-addon-versions --kubernetes-version 1.35 --addon-name vpc-cni \