MS Azure/Azure CLI 명령어 모음집

[Azure CLI ] az configure

aliceintr 2021. 1. 22. 00:35
반응형

 

항상 사용하는 디폴트 값을 저장 할 수 있는 cmd 인 az configure 명령어에 대해 알아보자.

기본적으로 location 을 가장 많이 디폴트 값으로 잘 쓰기 때문에 해당 예제는 location 관련 된 것이로 작성해 본다

az configure --defaults location=eastus

기본 리소스 그룹도 정해 줄 수 있다.

az configure --defaults group="[sandbox Resource Group]"

도움말을 보자

$ az configure --help

Command
    az configure : Manage Azure CLI configuration. This command is interactive.

Arguments
    --defaults -d      : Space-separated 'name=value' pairs for common argument defaults.
    --list-defaults -l : List all applicable defaults.  Allowed values: false, true.
    --scope            : Scope of defaults. Using "local" for settings only effective under current
                         folder.  Allowed values: global, local.  Default: global.

Global Arguments
    --debug            : Increase logging verbosity to show all debug logs.
    --help -h          : Show this help message and exit.
    --only-show-errors : Only show errors, suppressing warnings.
    --output -o        : Output format.  Allowed values: json, jsonc, none, table, tsv, yaml, yamlc.
                         Default: json.
    --query            : JMESPath query string. See http://jmespath.org/ for more information and
                         examples.
    --verbose          : Increase logging verbosity. Use --debug for full debug logs.

Examples
    Set default resource group, webapp and VM names. (autogenerated)
        az configure --defaults group=myRG web=myweb vm=myvm


For more specific examples, use: az find "az configure"

Please let us know how we are doing: https://aka.ms/azureclihats
반응형