Control: SQL Server should use a virtual network service endpoint
Description
This policy audits any SQL Server not configured to use a virtual network service endpoint.
Usage
Run the control in your terminal:
powerpipe control run azure_compliance.control.sql_server_use_virtual_service_endpoint
Snapshot and share results via Turbot Pipes:
powerpipe loginpowerpipe control run azure_compliance.control.sql_server_use_virtual_service_endpoint --share
SQL
This control uses a named query:
with sql_server_subnet as ( select distinct a.name, rule -> 'properties' -> 'virtualNetworkSubnetId' as subnet_id from azure_sql_server as a, jsonb_array_elements(virtual_network_rules) as rule)select distinct a.name as resource, case when s.name is null then 'alarm' else 'ok' end as status, case when s.name is null then a.name || ' not configured with virtual service endpoint.' else a.name || ' configured with virtual service endpoint.' end as reason , a.resource_group as resource_group , sub.display_name as subscriptionfrom azure_sql_server as a left join sql_server_subnet as s on a.name = s.name, azure_subscription as subwhere sub.subscription_id = a.subscription_id;