azAppConfigStore
Use the resource azAppConfigStore to deploy an Azure App Configuration Store to the relevant subscription.
Attribute
Attribute | Type | Mandatory | Values | Default | Notes |
---|---|---|---|---|---|
Name | String | Yes | |||
ResourceGroupName | String | Yes | |||
Location | String | Yes | |||
Sku | String | Yes | Free | 1 Free SKU per subscription | |
Standard | |||||
Tag | Object | No | |||
Lock | Object | No |
Input by YAML
Object model for YAML deployment:
---
azAppConfigStore:
# Mandatory
- Name: 'string'
ResourceGroupName: 'string'
Location: 'string'
Sku: 'string' # Free, Standard, only 1 Free per subscription
# Optional
Tag:
'keyvalue-pairs'
Lock:
- Name: 'string'
Level: 'string' # CanNotDelete, ReadOnly
Notes: 'string'
Input by JSON
Object model for JSON deployment:
{
"azAppConfigStore": [
{
"Name": "string",
"ResourceGroupName": "string",
"Location": "string",
"Sku": "string",
"Tag": {
"key": "value"
},
"Lock": [
{
"Name": "string",
"Level": "string",
"Notes": "string"
}
]
}
]
}