turbot/steampipe-mod-aws-insights

Dashboard: AWS EBS Snapshot Inventory Report

This report answers the following questions:

  • What is the total number of EBS snapshots across my accounts?
  • What are the essential details of each snapshot (size, state, progress)?
  • Which volumes are the snapshots created from?
  • Which snapshots are encrypted and what KMS keys are used?
  • What tags are applied to snapshots?
  • How are snapshots distributed across accounts and regions?
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 EBS Snapshot Inventory Report dashboard.

You could also snapshot and share results via Turbot Pipes:

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

Queries

This dashboard uses the the following queries:
select count(*) as "Snapshots" from aws_ebs_snapshot;

Tags