turbot/steampipe-mod-azure-insights

Dashboard: Azure Key Vault Key Detail

This dashboard answers the following questions for each key:

  • How is the key configured?
  • What relationships does the key have with other resources?
  • What tags are applied?
  • What is the state of the key?
This dashboard contains 3 cards, 1 graph, 1 input and 3 tables.

Usage

Install the mod:

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

Start the Powerpipe server:

steampipe service start
powerpipe server

Open http://localhost:9033 in your browser and select Azure Key Vault Key Detail dashboard.

You could also snapshot and share results via Turbot Pipes:

powerpipe login
powerpipe dashboard run azure_insights.dashboard.key_vault_key_detail --share

Queries

This dashboard uses the the following queries:
select
created_at as "Created At",
expires_at as "Expires At",
updated_at as "Updated At"
from
azure_key_vault_key
where
lower(id) = $1
and subscription_id = split_part($1, '/', 3);

Tags