turbot/azure_insights

Query: kubernetes_cluster_disk_by_encryption_status

Usage

powerpipe query azure_insights.query.kubernetes_cluster_disk_by_encryption_status

Steampipe Tables

SQL

select
encryption,
count(*)
from
(
select
case
when disk_encryption_set_id is null then 'disabled'
else 'enabled'
end encryption
from
azure_kubernetes_cluster
) as s
group by
encryption
order by
encryption;

Dashboards

The query is used in the dashboards: