LinuxCommandLibrary

az-appconfig

Manage Azure App Configuration resources

TLDR

Create an App Configuration

$ az appconfig create [[-n|--name]] [name] [[-g|--resource-group]] [group_name] [[-l|--location]] [location]
copy

Delete a specific App Configuration
$ az appconfig delete [[-g|--resource-group]] [rg_name] [[-n|--name]] [appconfig_name]
copy

List all App Configurations under the current subscription
$ az appconfig list
copy

List all App Configurations under a specific resource group
$ az appconfig list [[-g|--resource-group]] [rg_name]
copy

Show properties of an App Configuration
$ az appconfig show [[-n|--name]] [appconfig_name]
copy

Update a specific App Configuration
$ az appconfig update [[-g|--resource-group]] [rg_name] [[-n|--name]] [appconfig_name]
copy

SYNOPSIS

az appconfig [arguments]

PARAMETERS

--debug
    Increase logging verbosity to show all debug logs.

--help -h
    Show this help message and exit.

--output --only-show-errors
    Show only errors, suppressing all other output.

--query
    JMESPath query string. See http://jmespath.org/ for more information and examples.

--verbose
    Increase logging verbosity. Use --debug for full debug logs.

DESCRIPTION

The `az-appconfig` command provides a command-line interface for managing Azure App Configuration resources. It allows you to create, update, delete, and configure App Configuration stores and their associated key-values. This command is part of the Azure CLI and enables you to automate App Configuration tasks, integrate them into scripts, and manage them directly from the command line. With `az-appconfig`, you can easily manage configuration data for your applications in a centralized and scalable manner. The command supports importing and exporting configurations, managing feature flags, and securing access to your App Configuration resources. It is particularly useful for DevOps engineers, developers, and system administrators who need to manage application configuration programmatically.
Using `az-appconfig`, users can streamline the configuration management process and ensure consistency across different environments.

CAVEATS

The `az-appconfig` command requires the Azure CLI to be installed and configured with a valid Azure subscription. Ensure you have the necessary permissions to access and manage App Configuration resources in your Azure subscription.

SUBGROUPS AND OPERATIONS

The `az appconfig` command is further divided into subgroups to manage specific aspects of App Configuration. Commonly used operations include:
-`az appconfig create`: Creates a new App Configuration store.
-`az appconfig delete`: Deletes an existing App Configuration store.
-`az appconfig show`: Shows the details of an App Configuration store.
-`az appconfig list`: Lists all App Configuration stores in a resource group or subscription.
-`az appconfig kv`: Manages key-value pairs within an App Configuration store.

EXAMPLE USAGE

To create a new App Configuration store: `az appconfig create --name myAppConfig --resource-group myResourceGroup --location eastus`.
To list all App Configuration stores in a resource group: `az appconfig list --resource-group myResourceGroup`

SEE ALSO

az login(1), az group(1), az account(1)

Copied to clipboard