We've been experiencing the same problem.
Incremental ARM re-deployments of App Plans to the UK South region have been failing with the error above since Friday Oct 01. I can only get the deployment to succeed if I delete the existing App Plan first and then retry.
These deployments have been running fine before for at least a month.
Here is an example of the template being pushed (generated from Bicep):
{
"type": "Microsoft.Web/serverfarms",
"apiVersion": "2021-01-15",
"name": "[take(variables('appServicePlanName'), 40)]",
"location": "[parameters('location')]",
"tags": {
"org": "[parameters('org')]",
"env": "[parameters('env')]",
"proj": "[parameters('proj')]"
},
"sku": {
"name": "[parameters('appPlanSkuName')]"
},
"kind": "app",
"properties": {
"perSiteScaling": false,
"elasticScaleEnabled": false,
"maximumElasticWorkerCount": 1,
"isSpot": false,
"reserved": false,
"targetWorkerCount": 0,
"targetWorkerSizeId": 0
}
}
And the raw error:
{
"code": "DeploymentFailed",
"message": "At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.",
"details": [
{
"code": "InternalServerError",
"message": "There was an unexpected InternalServerError. Please try again later. x-ms-correlation-request-id: 65b9766b-f87f-40a8-8fa1-e7bec7e4fea9"
}
]
}