turbot/aws_insights

Query: iam_roles_for_dax_cluster

Usage

powerpipe query aws_insights.query.iam_roles_for_dax_cluster

Steampipe Tables

SQL

select
iam_role_arn
from
aws_dax_cluster
where
arn = $1
and iam_role_arn is not null
and account_id = split_part($1, ':', 5)
and region = split_part($1, ':', 4);