turbot/steampipe-mod-aws-insights

Dashboard: AWS KMS Key Inventory Report

This report answers the following questions:

  • What is the total number of KMS keys across my accounts?
  • What are the essential details of each KMS key (ID, creation date, state)?
  • Which keys are enabled and which are disabled?
  • What is the rotation status of my keys?
  • What tags are applied to keys?
  • How are keys 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 KMS Key Inventory Report dashboard.

You could also snapshot and share results via Turbot Pipes:

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

Queries

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

Tags