mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-01 18:42:38 +00:00
27 lines
522 B
Plaintext
27 lines
522 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# 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}}`
|