Forum Discussion
Deleted
Jan 29, 2018Error during create AKS cluster
I found a problem during create AKS service on West EU by using azure CLI.
It shown the error as
"Operation failed with status: 'Bad Request'. Details: Required resource provider registration...
kasunsjc
Feb 06, 2018MCT
If you didnot use Azure VNet before (New Subscription) first you have to register the resource using PowerShell or from portal.
As the error clearly mentioned that Microsoft.Compute,Microsoft.Network is missing from registration.
https://docs.microsoft.com/en-us/azure/azure-resource-manager/resource-manager-supported-services
Thanks
As the error clearly mentioned that Microsoft.Compute,Microsoft.Network is missing from registration.
https://docs.microsoft.com/en-us/azure/azure-resource-manager/resource-manager-supported-services
Thanks
Kushal Kamra
Feb 09, 2018Copper Contributor
That helped.
Solution is to register the individual Resource Providers to the Azure Subscription.
Here are my two cents using Azure CLI :
az provider register --namespace Microsoft.Network,Microsoft,Compute
Wait it out and woof, your command runs in a ziffy.
Solution is to register the individual Resource Providers to the Azure Subscription.
Here are my two cents using Azure CLI :
az provider register --namespace Microsoft.Network,Microsoft,Compute
Wait it out and woof, your command runs in a ziffy.
- Stuart LeeksMay 11, 2018Copper Contributor
There's a typo in the az provider command (and I couldn't get the CLI to accept multiple namespaces), so I would recommend:
az provider register --namespace Microsoft.Network
az provider register --namespace Microsoft.ComputeNOTE that the registration is asynchronous, so check whether these have completed with
az provider show --namespace Microsoft.Network -o table
az provider show --namespace Microsoft.Compute -o table