0
votes

I tried setting up autoscale alerts on Azure App Services using this template: https://github.com/Azure/azure-quickstart-templates/tree/master/monitor-autoscale-alert. When deploying to Azure, it failed with an error that didn't explain what went wrong. So I gave up. I noticed that I have a hidden resource named autoscaleActionGroup of type microsoft.insights/actiongroups in my subscription. Not sure if it was there before trying to run the template. Is it safe to delete this without causing problems for the custom auto-scaling rules I have already set up?

1

1 Answers

0
votes

If you look at the template code you can see it will create that action group:

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