eks:ListDashboardData is a Read access-level action in the eks service. Grants permission to list dashboard data. 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:ListDashboardData can be scoped to in an IAM policy.
Keys you can use in the Condition block of a policy that grants eks:ListDashboardData.
Filters access by a tag key and value pair
A minimal policy that allows eks:ListDashboardData. Replace "Resource": "*" with a specific ARN to follow least privilege.
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "AllowEksListDashboardData",
"Effect": "Allow",
"Action": "eks:ListDashboardData",
"Resource": "*"
}
]
}