зеркало из https://github.com/Azure/vdc.git
35 строки
888 B
JSON
35 строки
888 B
JSON
{
|
|
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json",
|
|
"contentVersion": "1.0.0.0",
|
|
"parameters": {
|
|
"eventGridDomainName": {
|
|
"type": "string",
|
|
"metadata": {
|
|
"description": "The name of the Event Grid Domain."
|
|
}
|
|
},
|
|
"location": {
|
|
"type": "string",
|
|
"defaultValue": "[resourceGroup().location]",
|
|
"metadata": {
|
|
"description": "The location in which the Event Grid resources should be deployed."
|
|
}
|
|
}
|
|
},
|
|
"variables": {},
|
|
"resources": [
|
|
{
|
|
"type": "Microsoft.EventGrid/domains",
|
|
"apiVersion": "2019-02-01-preview",
|
|
"name": "[parameters('eventGridDomainName')]",
|
|
"location": "[parameters('location')]",
|
|
"tags": {},
|
|
"properties": {
|
|
"inputSchema": "EventGridSchema"
|
|
},
|
|
"resources": []
|
|
}
|
|
],
|
|
"outputs": {}
|
|
}
|