turbot/steampipe-mod-ibm-insights

Dashboard: IBM KMS Key Dashboard

This dashboard answers the following questions:

  • How many keys are in each account and region?
  • How many keys are standard and root managed?
  • How many keys are in disabled state?
  • How many root managed keys have rotation disabled?
This dashboard contains 6 cards.

Usage

Install the mod:

mkdir dashboards
cd dashboards
powerpipe mod init
powerpipe mod install github.com/turbot/steampipe-mod-ibm-insights

Start the Powerpipe server:

steampipe service start
powerpipe server

Open http://localhost:9033 in your browser and select IBM KMS Key Dashboard dashboard.

You could also snapshot and share results via Turbot Pipes:

powerpipe login
powerpipe dashboard run ibm_insights.dashboard.ibm_kms_key_dashboard --share

Queries

This dashboard uses the the following queries:
select
a.name as "Account",
count(k.*) as "Keys"
from
ibm_kms_key as k,
ibm_account as a
where
k.account_id = a.customer_id
and k.state <> '5'
group by
a.name
order by
a.name;

Tags