eks:ListDashboardResources is a Read access-level action in the eks service. Grants permission to list dashboard resources. The Amazon EKS Dashboard aggregates information about cluster resources across multiple accounts and regions. The dashboard includes information about EC2 Instances and EKS Cluster versions
ARNs that eks:ListDashboardResources can be scoped to in an IAM policy.
Keys you can use in the Condition block of a policy that grants eks:ListDashboardResources.
Filters access by a tag key and value pair
A minimal policy that allows eks:ListDashboardResources. Replace "Resource": "*" with a specific ARN to follow least privilege.
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "AllowEksListDashboardResources",
"Effect": "Allow",
"Action": "eks:ListDashboardResources",
"Resource": "*"
}
]
}