I need to Create ARM Template to enable Auto healing in Azure App service with Custom Auto healing based on HTTP status code range (400-530) and recycle the App service if the request count is reached for the specified status codes and specified time limit. I couldn't find ARM template config for status code range and I am able to see only for single status code. Can someone pls help me in finding the right config to mention the status code range and tell me how the below has to be configured.
"type": "Microsoft.Web/sites/config", "apiVersion": "2018-11-01", "name": "[concat(parameters('sites_SampleAutoHeal_name'), '/web')]", "location": "West Europe", "dependsOn": [ "[resourceId('Microsoft.Web/sites', parameters('sites_SampleAutoHeal_name'))]" ], ..... "autoHealEnabled": true, "autoHealRules": { "triggers": { "privateBytesInKB": 0, "statusCodes": [], "slowRequests": {} }, "actions": { "actionType": "Recycle", "minProcessExecutionTime": "00:00:00" } },