The configurationStores/keyValues resource type can be deployed with operations that target:
For a list of changed properties in each API version, see change log.
To create a Microsoft.AppConfiguration/configurationStores/keyValues resource, add the following JSON to your template.
{
"type": "Microsoft.AppConfiguration/configurationStores/keyValues",
"apiVersion": "2023-03-01",
"name": "string",
"properties": {
"contentType": "string",
"tags": {},
"value": "string"
}
}
Name | Description | Value |
---|---|---|
type | The resource type | 'Microsoft.AppConfiguration/configurationStores/keyValues' |
apiVersion | The resource api version | '2023-03-01' |
name | The resource name See how to set names and types for child resources in JSON ARM templates. |
string (required) |
properties | All key-value properties. | KeyValueProperties |
Name | Description | Value |
---|---|---|
contentType | The content type of the key-value's value. Providing a proper content-type can enable transformations of values when they are retrieved by applications. |
string |
tags | A dictionary of tags that can help identify what a key-value may be applicable for. | object |
value | The value of the key-value. | string |
The following quickstart templates deploy this resource type.
Template | Description |
---|---|
Create an App Configuration Store with Feature Flag |
This template creates a new Azure App Configuration store with one feature flag. |
Create an App Configuration Store with Feature Flag |
This template creates a new Azure App Configuration store with one Key Vault reference. |
Create an App Configuration Store with Outputs |
This template creates a new Azure App Configuration store with two key-values. |
App Configuration Key-Values |
This template creates a new Azure App Configuration store with three key-values controlled by a copy function. |