在 Azure 上删除操作组是否安全

Is it safe to delete an action group on Azure

我尝试使用此模板在 Azure 应用服务上设置自动缩放警报:https://github.com/Azure/azure-quickstart-templates/tree/master/monitor-autoscale-alert。部署到 Azure 时,它​​失败了,并出现了一个没有解释问题所在的错误。所以我放弃了。我注意到我的订阅中有一个名为 autoscaleActionGroup 且类型为 microsoft.insights/actiongroups 的隐藏资源。在尝试 运行 模板之前不确定它是否存在。删除它是否安全而不会对我已经设置的自定义自动缩放规则造成问题?

如果您查看模板代码,您会发现它将创建该操作组:

 "parameters": {
    "actionGroupName": {
      "type": "string",
      "defaultValue":  "autoscaleActionGroup",
      "minLength": 1,
      "metadata": {
        "description": "Name for the Action group."
      }