Skip to content

Latest commit

 

History

History
48 lines (33 loc) · 1.68 KB

File metadata and controls

48 lines (33 loc) · 1.68 KB
title titleSuffix description services author ms.service ms.devlang ms.topic ms.date ms.author ms.custom
Azure CLI script sample - Import to an App Configuration store
Azure App Configuration
Use Azure CLI script - Importing configuration to Azure App Configuration.
azure-app-configuration
maud-lv
azure-app-configuration
azurecli
sample
04/12/2024
malev
devx-track-azurecli

Import to an Azure App Configuration store

This sample script imports key-value settings to an Azure App Configuration store.

[!INCLUDE quickstarts-free-trial-note]

[!INCLUDE azure-cli-prepare-your-environment.md]

  • This tutorial requires version 2.0 or later of the Azure CLI. If using Azure Cloud Shell, the latest version is already installed.

Sample script

#!/bin/bash

# Import key-values from a file
az appconfig kv import --name myTestAppConfigStore --source file --format json --path ~/Import.json

[!INCLUDE cli-script-cleanup]

Script explanation

This script uses the following commands to import to an App Configuration store. Each command in the table links to command-specific documentation.

Command Notes
az appconfig kv import Imports to an App Configuration store resource.

Next steps

For more information on the Azure CLI, see the Azure CLI documentation.

More App Configuration CLI script samples can be found in the Azure App Configuration CLI samples.