turbot/steampipe-mod-gcp-insights

Dashboard: GCP KMS Key Inventory Report

This report answers the following questions:

  • How many KMS keys are there across my projects?
  • When were the keys created?
  • What are the purposes of different keys?
  • Which key rings contain these keys?
  • How are key rotations configured?
  • What algorithms and protection levels are used?
  • What labels are applied to each key?
  • How are keys 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 KMS Key Inventory Report dashboard.

You could also snapshot and share results via Turbot Pipes:

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

Queries

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

Tags