Skip to main content

azAppConfigStore

Deploy an Azure App Configuration Store to the relevant subscription.

Attribute

AttributeTypeMandatoryValuesDefaultNotes
NameStringYes
ResourceGroupNameStringYes
LocationStringYes
SkuStringYesFree1 Free SKU per subscription
Standard
TagObjectNo
LockObjectNo

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"
}
]
}
]
}