turbot/steampipe-mod-aws-insights

Dashboard: AWS IAM User Inventory Report

This report answers the following questions:

  • What is the total number of IAM users across my accounts?
  • What are the essential details of each IAM user (name, creation date, MFA status)?
  • When did users last access the AWS Console?
  • What tags are applied to users?
  • How are users distributed across accounts?
This dashboard contains 1 card 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 User Inventory Report dashboard.

You could also snapshot and share results via Turbot Pipes:

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

Queries

This dashboard uses the the following queries:
select
count(*) as value,
'Users' as label
from
aws_iam_user;

Tags