turbot/steampipe-mod-aws-insights

Dashboard: AWS S3 Bucket Inventory Report

This report answers the following questions:

  • How many buckets are there across my accounts?
  • When were the buckets created?
  • Which buckets have public policies, versioning, lifecycle rules, or logging enabled?
  • What tags are on each bucket?
  • How are buckets 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 S3 Bucket Inventory Report dashboard.

You could also snapshot and share results via Turbot Pipes:

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

Queries

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

Tags