Last active
March 10, 2019 16:40
-
-
Save kasunkv/a3fc28818f60b0483d66fb0b921f1f42 to your computer and use it in GitHub Desktop.
Enable Azure Resource Provider using Azure CLI
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Login to Azure | |
az login --use-device-code | |
# Check the registration Status of the Resource Provider | |
az provider list --query "[?namespace == 'Microsoft.Compute']" --output table | |
# Register the Microsoft.Compute Resource Provider | |
az provider register --namespace "Microsoft.Compute" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment