I am getting an error when Azure Resource Manager (ARM) is deploying my template on Azure. In the Resource Group events pane I get an error for the storage account creation of:
statusMessage:{"error":{"code":"NoRegisteredProviderFound","message":"No registered resource provider found for location 'Australia Southeast' and API version '2014-11-01'."}}
I am using the Azure xPlat CLI and can confirm with the command azure location list
that the storageAccounts resource is available in Australia Southeast. The resource in the template is:
{
"apiVersion": "2014-11-01",
"name": "[variables('storageName')]",
"type": "microsoft.classicstorage/storageAccounts",
"location": "[variables('location')]"
}
I have tried this with different values for the apiVersion from the list at Service Management Versioning
Does anyone know if it is the api version? Or the Location that is the issue? And if either, is there any way to debug this further than the error message on the portal?