turbot/steampipe-mod-aws-insights

Dashboard: AWS EBS Snapshot Dashboard

This dashboard answers the following questions:

  • How many snapshots are in each account and region?
  • How much storage is allocated across all snapshots?
  • How many unencrypted and publicly accessible snapshots are there?
  • How much do my snapshots cost each month?
This dashboard contains 5 cards 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 EBS Snapshot Dashboard dashboard.

You could also snapshot and share results via Turbot Pipes:

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

Queries

This dashboard uses the the following queries:
select
a.title as "Account",
count(s.*) as "Snapshots"
from
aws_ebs_snapshot as s,
aws_account as a
where
a.account_id = s.account_id
group by
a.title
order by
a.title;

Tags