turbot/tailpipe-mod-azure-activity-log-detections

Detection: Network Security Group Created or Updated

Overview

Detect when an Azure Network Security Group (NSG) was created or updated. NSGs control inbound and outbound traffic to Azure resources, and changes to their configurations can impact security and traffic flow. Monitoring these updates helps prevent unauthorized modifications and ensures a consistent security posture.

References:

Usage

Run the detection in your terminal:

powerpipe detection run azure_activity_log_detections.detection.network_security_group_created_or_updated

Snapshot and share results via Turbot Pipes:

powerpipe login
powerpipe detection run azure_activity_log_detections.detection.network_security_group_created_or_updated --share

SQL

This detection uses a named query:

select
tp_timestamp as timestamp,
operation_name as operation,
resource_id as resource,
caller as actor,
tp_index::varchar as subscription_id,
resource_group_name as resource_group,
tp_id as source_id,
status as event_status,
*
from
azure_activity_log
where
operation_name = 'Microsoft.Network/networkSecurityGroups/write'
and status = 'Succeeded'
order by
timestamp desc;

Tags