1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-29 00:35:27 +02:00

az-config: add page (#6701)

This commit is contained in:
Raul Piraces Alastuey 2021-10-06 08:25:30 +02:00 committed by GitHub
parent 088f340e55
commit 2e14d3046e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

21
pages/common/az-config.md Normal file
View file

@ -0,0 +1,21 @@
# az config
> Manage Azure CLI configuration.
> Part of `azure-cli`.
> More information: <https://docs.microsoft.com/cli/azure/config>.
- Print all configurations:
`az config get`
- Print configurations for a specific section:
`az config get {{section_name}}`
- Set a configuration:
`az config set {{configuration_name}}={{value}}`
- Unset a configuration:
`az config unset {{configuration_name}}`