To list your available AWS EKS clusters

To list your available clusters

This example command lists all of your available clusters in your default region.

Command:

aws eks list-clusters
Output:

{
“clusters”: [
“devel”,
“prod”
]
}

Reference: https://awscli.amazonaws.com/v2/documentation/api/latest/reference/eks/list-clusters.html

Leave a comment