Search code examples
azure-cliazure-sentinel

What should be provided as action-name in az-cli command while creating sentinel alert?


I'm trying to create a sentinel alert by using the below az-cli command :

az sentinel alert-rule action create --action-name
                                     --resource-group
                                     --rule-name
                                     --workspace-name
                                     [--etag]
                                     [--logic-app-resource-id]
                                     [--trigger-uri]

Have followed this article but it doesn't have any examples for the command https://learn.microsoft.com/en-us/cli/azure/sentinel/alert-rule/action?view=azure-cli-latest#az-sentinel-alert-rule-action-create

What should be provided as parameter to action-name ?


Solution

  • az sentinel alert-rule action create --action-name
                                         --resource-group
                                         --rule-name
                                         --workspace-name
                                         [--etag]
                                         [--logic-app-resource-id]
                                         [--trigger-uri] ```
    

    Here --eta, --logic-app-resource-id, --trigger-uri paramters are optional where --action-name is the action group name.

    For action name, go to the Azure Portal > Monitor > Alerts > Action Groups > create an action group for which resource that alert rules should be created:

    enter image description here