turbot/azure_compliance

Query: storage_account_trusted_microsoft_services_enabled

Usage

powerpipe query azure_compliance.query.storage_account_trusted_microsoft_services_enabled

SQL

select
sa.id as resource,
case
when network_rule_bypass not like '%AzureServices%' then 'alarm'
else 'ok'
end as status,
case
when network_rule_bypass not like '%AzureServices%' then sa.name || ' trusted Microsoft services not enabled.'
else sa.name || ' trusted Microsoft services enabled.'
end as reason,
sa.resource_group as resource_group,
sub.display_name as subscription
from
azure_storage_account sa,
azure_subscription sub
where
sub.subscription_id = sa.subscription_id;

Controls

The query is being used by the following controls: