Your SOC team needs to ensure that all high-severity Microsoft Sentinel incidents are automatically assigned to the senior analyst on call. The team uses Microsoft Teams for communication. Which configuration should you implement?
Trap 1: Configure an analytics rule to set the incident owner to the senior…
Analytics rules are designed to generate alerts and incidents from log queries; they do not expose actions to set an incident's owner or configuration for Teams integration. Ownership assignment is an incident state change, which only automation rules (or manual updates) can perform. Teams integration for notifications requires a playbook/Azure Logic App, not a Sentinel setting, so this option fails to meet both requirements.
Trap 2: Create a playbook that reassigns incidents and posts to Teams, and…
A playbook, built as an Azure Logic App, can post adaptive cards to Teams and run security response actions, but it cannot directly reassign incidents because incident properties like owner are managed by the Microsoft Sentinel API and automation rules. Attaching a playbook to an automation rule is the correct pattern, but the rule itself must perform the assignment step before invoking the playbook. Therefore, this answer incorrectly relies on the playbook to handle both the assignment and the notification.
Trap 3: Create a workbook that filters high-severity incidents and…
Azure Workbook is an interactive reporting canvas that visualizes analytics data from Log Analytics workspaces, not a mechanism for incident handling or permissions to update incident ownership. Workbook settings only control parameters and visualizations; they cannot subscribe to a Teams webhook to send messages. Notification to Microsoft Teams must be accomplished through a playbook triggered by an automation rule, not by a workbook filter or workbook configuration.
- A
Configure an analytics rule to set the incident owner to the senior analyst and enable Teams integration in Sentinel settings.
Why wrong: Analytics rules are designed to generate alerts and incidents from log queries; they do not expose actions to set an incident's owner or configuration for Teams integration. Ownership assignment is an incident state change, which only automation rules (or manual updates) can perform. Teams integration for notifications requires a playbook/Azure Logic App, not a Sentinel setting, so this option fails to meet both requirements.
- B
Create a playbook that reassigns incidents and posts to Teams, and attach it to an automation rule triggered by high-severity incidents.
Why wrong: A playbook, built as an Azure Logic App, can post adaptive cards to Teams and run security response actions, but it cannot directly reassign incidents because incident properties like owner are managed by the Microsoft Sentinel API and automation rules. Attaching a playbook to an automation rule is the correct pattern, but the rule itself must perform the assignment step before invoking the playbook. Therefore, this answer incorrectly relies on the playbook to handle both the assignment and the notification.
- C
Create a workbook that filters high-severity incidents and configure a Teams webhook in the workbook settings.
Why wrong: Azure Workbook is an interactive reporting canvas that visualizes analytics data from Log Analytics workspaces, not a mechanism for incident handling or permissions to update incident ownership. Workbook settings only control parameters and visualizations; they cannot subscribe to a Teams webhook to send messages. Notification to Microsoft Teams must be accomplished through a playbook triggered by an automation rule, not by a workbook filter or workbook configuration.
- D
Create an automation rule that runs when an incident is created with severity High, sets the owner to the senior analyst, and then runs a playbook to post a message to Teams.
An automation rule can be configured to trigger 'When incident is created' and apply a condition for Severity equals High, then perform actions such as setting the owner to the senior analyst and running a playbook. The playbook, typically an Azure Logic App with a Microsoft Teams connector, can post an adaptive card message to a Teams channel. This combined approach correctly satisfies both requirements: automated ownership assignment and proactive notification, making it the right solution.