Forrest logo
back to the az tool

az-config:tldr:21618

az-config: Print all configurations.
$ az config get
try on your machine

The command "az config get" is used in Azure CLI (Command-Line Interface) to retrieve the value of a specific configuration setting.

When you run the "az config get" command without providing any additional arguments, it will display the current configuration settings.

For example, if you have previously set a configuration value using the "az config set" command, you can use "az config get" to retrieve and display that value.

Here's an example:

az config set core.output table
az config get

After running these commands, the output of the "az config get" command would be:

{
  "core": {
    "output": "table"
  }
}

In this case, the "az config get" command retrieves and displays the value of "core.output" configuration, which is "table".

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the az tool