- Team Foundation Version Control (TFVC)
- Virtual Machines
- App Services
- Containers
- Serverless
brew install azure-cli
choco install azure-cli
az -h
#
az extension add -n init
#
az init
#
az config get core.output
az config set defaults.location=eastus
#
cat ~/.azure/config
Notes: Get Directory ID
#
az login
# or, set Directory ID
az login \
--allow-no-subscriptions \
--tenant '<directory-id>'
(SubscriptionNotFound) The subscription '<UUID>' could not be found.
Code: SubscriptionNotFound
Message: The subscription '<UUID>' could not be found.
Make sure you have the Azure Account set up.
#
brew uninstall azure-cli
#
rm -fR ~/.azure
#
code --install-extension ms-vscode.vscode-node-azure-pack
#
jq '."recommendations" += ["ms-vscode.vscode-node-azure-pack"]' "$PWD"/.vscode/extensions.json | sponge "$PWD"/.vscode/extensions.json