turbot/azure_compliance

Query: search_service_uses_sku_supporting_private_link

Usage

powerpipe query azure_compliance.query.search_service_uses_sku_supporting_private_link

SQL

select
s.id as resource,
case
when sku_name = 'free' then 'alarm'
else 'ok'
end as status,
case
when sku_name = 'free' then s.title || ' SKU does not supports private link.'
else s.title || ' SKU supports private link.'
end as reason,
s.resource_group as resource_group,
sub.display_name as subscription
from
azure_search_service as s,
azure_subscription as sub
where
sub.subscription_id = s.subscription_id;

Controls

The query is being used by the following controls: