-
Notifications
You must be signed in to change notification settings - Fork 47
Open
Labels
Description
Summary of the new feature / enhancement
DSC uses the Azure Template schema for its configuration document. It should also follow the Azure schema for its parameters file:
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"<first-parameter-name>": {
"value": "<first-value>"
},
"<second-parameter-name>": {
"value": "<second-value>"
}
}
}
https://learn.microsoft.com/en-us/azure/azure-resource-manager/templates/parameter-files
Proposed technical implementation details (optional)
No response