turbot/steampipe-mod-gcp-insights

Dashboard: GCP Storage Bucket Detail

This dashboard answers the following questions for each bucket:

  • How is the bucket configured?
  • What relationships does the bucket have with other resources?
  • What tags are applied?
  • How is logging configured?
  • How is encryption configured?
  • Which other resources use this bucket?
This dashboard contains 6 cards, 1 graph, 1 input and 5 tables.

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 Detail dashboard.

You could also snapshot and share results via Turbot Pipes:

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

Queries

This dashboard uses the the following queries:
select
'Storage Class' as label,
initcap(storage_class) as value
from
gcp_storage_bucket
where
id = split_part($1, '/', 1)
and project = split_part($1, '/', 2);

Tags