turbot/steampipe-mod-azure-compliance

Control: Kusto clusters should use SKU with an SLA

Description

This control checks if Kusto clusters use SKU with an SLA. This control is considered non-compliant if Kusto clusters use SKUs without an SLA.

Usage

Run the control in your terminal:

powerpipe control run azure_compliance.control.kusto_cluster_sku_with_sla

Snapshot and share results via Turbot Pipes:

powerpipe login
powerpipe control run azure_compliance.control.kusto_cluster_sku_with_sla --share

SQL

This control uses a named query:

select
kv.id as resource,
case
when sku_name in ('Dev(No SLA)_Standard_E2a_v4' , 'Dev(No SLA)_Standard_D11_v2') then 'alarm'
else 'ok'
end as status,
name || ' using ' || sku_name || ' SKU tier.' as reason
, kv.resource_group as resource_group
, sub.display_name as subscription
from
azure_kusto_cluster as kv,
azure_subscription as sub
where
sub.subscription_id = kv.subscription_id;

Tags