turbot/steampipe-mod-oci-insights

Dashboard: OCI KMS Key Detail

This dashboard contains 2 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-oci-insights

Start the Powerpipe server:

steampipe service start
powerpipe server

Open http://localhost:9033 in your browser and select OCI KMS Key Detail dashboard.

You could also snapshot and share results via Turbot Pipes:

powerpipe login
powerpipe dashboard run oci_insights.dashboard.kms_key_detail --share

Queries

This dashboard uses the the following queries:
select
algorithm as "Algorithm",
curve_id as "Curve ID",
length as "Length"
from
oci_kms_key
where
id = $1;
{
"$1": "id"
}

Tags