turbot/steampipe-mod-aws-insights

Dashboard: AWS IAM Policy Detail

This dashboard answers the following questions:

  • What relationships does the policy have with other resources?
This dashboard contains 2 cards, 1 graph, 1 input and 3 tables.

Usage

Install the mod:

mkdir dashboards
cd dashboards
powerpipe mod init
powerpipe mod install github.com/turbot/steampipe-mod-aws-insights

Start the Powerpipe server:

steampipe service start
powerpipe server

Open http://localhost:9033 in your browser and select AWS IAM Policy Detail dashboard.

You could also snapshot and share results via Turbot Pipes:

powerpipe login
powerpipe dashboard run aws_insights.dashboard.iam_policy_detail --share

Queries

This dashboard uses the the following queries:
select
case when is_attached then 'Attached' else 'Detached' end as value,
'Attachment Status' as label,
case when is_attached then 'ok' else 'alert' end as type
from
aws_iam_policy
where
arn = $1;

Tags