turbot/steampipe-mod-aws-insights

Dashboard: AWS EBS Volume Inventory Report

This report answers the following questions:

  • What is the total number of EBS volumes across my accounts?
  • What are the essential details of each volume (size, type, state)?
  • Which volumes are encrypted and what KMS keys are used?
  • Which instances are volumes attached to?
  • What tags are applied to volumes?
  • How are volumes 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 Volume Inventory Report dashboard.

You could also snapshot and share results via Turbot Pipes:

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

Queries

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

Tags