Skip to content

Instantly share code, notes, and snippets.

@PetarKirov
Last active April 9, 2020 09:53
Show Gist options
  • Save PetarKirov/721c7121aee2ad675202ac05976feefa to your computer and use it in GitHub Desktop.
Save PetarKirov/721c7121aee2ad675202ac05976feefa to your computer and use it in GitHub Desktop.
Azure CLI tips

Useful Azure CLI commands

  • Register all Microsoft resource providers
    az provider list --query "[? starts_with(@.namespace, 'Microsoft')].namespace" -o tsv \
      | xargs -I{} sh -c 'echo "Registering provider {}" && az provider register -n {}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment