mirror of https://github.com/CrimsonTome/tldr.git
22 lines
429 B
Markdown
22 lines
429 B
Markdown
# az config
|
|
|
|
> Manage Azure CLI configuration.
|
|
> Part of `azure-cli` (also known as `az`).
|
|
> More information: <https://learn.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}}`
|