mirror of https://github.com/CrimsonTome/tldr.git
22 lines
437 B
Markdown
22 lines
437 B
Markdown
|
# az config
|
||
|
|
||
|
> Verwalten der Azure CLI-Konfiguration.
|
||
|
> Teil von `azure-cli`.
|
||
|
> Weitere Informationen: <https://learn.microsoft.com/cli/azure/config>.
|
||
|
|
||
|
- Rufe alle Konfigurationen ab:
|
||
|
|
||
|
`az config get`
|
||
|
|
||
|
- Rufe alle Konfigurationen in einer Sektion ab:
|
||
|
|
||
|
`az config get {{sektionsname}}`
|
||
|
|
||
|
- Setze eine Konfiguration:
|
||
|
|
||
|
`az config set {{konfigurationsname}}={{wert}}`
|
||
|
|
||
|
- Hebe eine Konfiguration auf:
|
||
|
|
||
|
`az config unset {{konfigurationsname}}`
|