Control: Email notification to subscription owner for high severity alerts should be enabled
Description
To ensure your subscription owners are notified when there is a potential security breach in their subscription, set email notifications to subscription owners for high severity alerts in Security Center.
Usage
Run the control in your terminal:
powerpipe control run azure_compliance.control.securitycenter_security_alerts_to_owner_enabled
Snapshot and share results via Turbot Pipes:
powerpipe loginpowerpipe control run azure_compliance.control.securitycenter_security_alerts_to_owner_enabled --share
SQL
This control uses a named query:
with contact_info as ( select count(*) filter (where alerts_to_admins = 'On') as admin_alert_count, subscription_id from azure_security_center_contact group by subscription_id limit 1)select sub.subscription_id as resource, case when admin_alert_count > 0 then 'ok' else 'alarm' end as status, case when admin_alert_count > 0 then '"All users with the following roles" set to Owner' else '"All users with the following roles" not set to Owner.' end as reason , sub.display_name as subscriptionfrom azure_subscription sub left join contact_info ci on sub.subscription_id = ci.subscription_id;