Control: 5.2.5 Ensure that Activity Log Alert exists for Create or Update Security Solution
Description
Create an activity log alert for the Create or Update Security Solution event.
Monitoring for Create or Update Network Security Group Rule events gives insight into network access changes and may reduce the time it takes to detect suspicious activity.
Remediation
From Azure Portal
- Navigate to the 
Monitorblade - Click on 
Alerts - Click on 
Create - Click on 
Alert rule - Under the Scope tab, click 
Select scope - In the 
Select a resourcewindow, select the appropriate filters:- Filter by subscription: < 
choose the subscription alerts are neededfor > - Filter by resource location: 
Security Solutions (securitySolutions) - Filter by location: 
All - Click on the 
subscription nameorresource grouporNetwork securiy groupthat the Log Alert Rule will be applied to 
 - Filter by subscription: < 
 - Verify that the selection preview shows:
All security solutions or < your selected resource >< Resource Name >- The subscription, group, or resource you selected
 - Click 
Done - Under the Condition tab, click 
Add Condition(theSelect a signalwindow may automatically open without clicking) - In the Select a 
signal window, under the "Signal Name" heading, clickCreate or Update Security Solutions (Microsoft.Security/securitySolutions) - Under the Actions tab, choose appropriately:
- Select action groups - If you have an existing action group to notify the necessary personnel.
 - Create action group - If you do not have an existing action group or want to create a new one.
 
 - Under the Details tab, fill in:
- Resource group - Select the resource group you want the alert rule to reside in.
 - Alert rule name - Give your alert a recognizable and standardized name.
 - Alert rule description - (Optional)
 
 - Click 
Review + createthen verify the summary details - Click 
Create 
From Azure CLI
[Azure CLI has been temporarily removed from the Activity Log Alerts section in version 1.5 and will be added back in the next release]
Default Value
By default, no monitoring alerts are created.
Usage
Run the control in your terminal:
powerpipe control run azure_compliance.control.cis_v150_5_2_5Snapshot and share results via Turbot Pipes:
powerpipe loginpowerpipe control run azure_compliance.control.cis_v150_5_2_5 --shareSQL
This control uses a named query:
with alert_rule as (  select    alert.id as alert_id,    alert.name as alert_name,    alert.enabled,    alert.location,    alert.subscription_id  from    azure_log_alert as alert,    jsonb_array_elements_text(scopes) as sc  where    alert.location = 'global'    and alert.enabled    and sc = '/subscriptions/' || alert.subscription_id    and (      (        alert.condition -> 'allOf' @> '[{"equals":"Security","field":"category"}]'        and alert.condition -> 'allOf' @> '[{"field": "operationName", "equals": "Microsoft.Security/securitySolutions/write"}]'      )      or      (        alert.condition -> 'allOf' @> '[{"equals":"Security","field":"category"}]'        and alert.condition -> 'allOf' @> '[{"field": "resourceType", "equals": "microsoft.security/securitysolutions"}]'        and jsonb_array_length(alert.condition -> 'allOf') = 2      )    )  limit 1)select  sub.subscription_id as resource,  case    when count(a.subscription_id) > 0 then 'ok'    else 'alarm'  end as status,  case    when count(a.subscription_id) > 0 then 'Activity log alert exists for create or update Security Solution event.'    else 'Activity log alert does not exists for create or update Security Solution event.'  end as reason    , sub.display_name as subscriptionfrom  azure_subscription sub  left join alert_rule a on sub.subscription_id = a.subscription_idgroup by  sub._ctx,  sub.subscription_id,  sub.display_name;