turbot/steampipe-mod-aws-insights

Dashboard: AWS IAM Action Glob Report

This dashboard contains 5 cards, 1 input and 1 table.

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 Action Glob Report dashboard.

You could also snapshot and share results via Turbot Pipes:

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

Queries

This dashboard uses the the following queries:
select
distinct on (action)
action,
description,
access_level,
prefix,
privilege
from
aws_iam_action as a
where
a.action like lower(glob($1))
{
"$1": "action_glob"
}

Tags