eks:ListDashboardResources

Read

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

Resource types

ARNs that eks:ListDashboardResources can be scoped to in an IAM policy.

arn:${Partition}:eks:${Region}:${Account}:dashboard/${DashboardName}
dashboard

Condition keys

Keys you can use in the Condition block of a policy that grants eks:ListDashboardResources.

aws:ResourceTag/${TagKey} String

Filters access by a tag key and value pair

Example IAM policy

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": "*"
    }
  ]
}

Related actions in eks

View all eks actions →