turbot/oci_insights

Query: kms_key_by_compartment

Usage

powerpipe query oci_insights.query.kms_key_by_compartment

SQL

with compartments as (
select
id,
'root [' || title || ']' as title
from
oci_identity_tenancy
union
(
select
c.id,
c.title || ' [' || t.title || ']' as title
from
oci_identity_compartment c,
oci_identity_tenancy t
where
c.tenant_id = t.id
and c.lifecycle_state = 'ACTIVE'
)
)
select
c.title as "Title",
count(k.*) as "Keys"
from
oci_kms_key as k,
compartments as c
where
c.id = k.compartment_id
group by
c.title
order by
c.title;

Dashboards

The query is used in the dashboards: