Ben Smith
Ben Smith

Reputation: 21

Azure WebJob Deploy Error MissingRegistrationForLocation

I am having difficulty deploying a basic Azure WebJob from Visual Studio. The deployment will successfully create the web app, app service plan and resource group. However, it fails to deploy the webjob. I receive the error message below:

Following errors occurred during the deploymnent: Error during deployment for resource 'resourcename' in resource group 'ResourceGroup': MissingRegistrationForLocation: The subscription is not registered for the resource type 'components' in the location 'Central US'. Please re-register for this provider in order to have access to this location.

I've tried multiple subscriptions, resource groups and app service plans in different regions and continue to receive the same error. Please help.

Upvotes: 2

Views: 1528

Answers (1)

Tom Sun
Tom Sun

Reputation: 24549

Deploy the Azure WebJob in the ‘Central US’, it works for me correctly with Visual Studio 2015 Azure .Net SDK 2.9.5. The errors seems like another SO Thread, it may be caused by old version of Azure SDK. If it is that case, please have a try to use the latest Azure SDK. And we can follow the document to deploy WebJob with Visual Studio. If we deployed with Azure Resource Manager, some troubleshoot common Azure deployment errors with Azure Resource Manager please refer to document.

Upvotes: 1

Related Questions