turbot/steampipe-mod-gcp-insights

Dashboard: GCP Storage Bucket Inventory Report

This report answers the following questions:

  • How many storage buckets are there across my projects?
  • When were the buckets created?
  • What storage classes are being used?
  • Which buckets have versioning enabled?
  • What type of encryption is used (Google-managed vs Customer-managed)?
  • How is access control configured (Uniform bucket-level access, Public access prevention)?
  • What lifecycle rules are applied?
  • What labels are applied to each bucket?
  • How are buckets distributed across projects and locations?
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-gcp-insights

Start the Powerpipe server:

steampipe service start
powerpipe server

Open http://localhost:9033 in your browser and select GCP Storage Bucket Inventory Report dashboard.

You could also snapshot and share results via Turbot Pipes:

powerpipe login
powerpipe dashboard run gcp_insights.dashboard.storage_bucket_inventory_report --share

Queries

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

Tags