This section defines which AWS IAM permissions Quix requires to operate and maintain your environment.
Quix separates responsibilities into two categories:
These permissions allow Quix engineers to:
Attach the following policy to the IAM role you delegate for Quix access (e.g., QuixClusterAdminRole).
Replace the variables:
{{ACCOUNT_ID}}{{REGION}}{{CLUSTER_NAME}}{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "ListEKSClusters",
"Effect": "Allow",
"Action": "eks:ListClusters",
"Resource": "*"
},
{
"Sid": "DescribeSpecificCluster",
"Effect": "Allow",
"Action": "eks:DescribeCluster",
"Resource": "arn:aws:eks:{{REGION}}:{{ACCOUNT_ID}}:cluster/{{CLUSTER_NAME}}"
},
{
"Sid": "AccessKubernetesApiOnThisCluster",
"Effect": "Allow",
"Action": "eks:AccessKubernetesApi",
"Resource": "arn:aws:eks:{{REGION}}:{{ACCOUNT_ID}}:cluster/{{CLUSTER_NAME}}"
}
]
}