37 строки
977 B
JSON
37 строки
977 B
JSON
{
|
|
"$schema": "http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json",
|
|
"contentVersion": "1.0.0.0",
|
|
"parameters": {
|
|
"availabilitySetName": {
|
|
"type": "String",
|
|
"metadata": {
|
|
"Description": "Name of Availability Set"
|
|
}
|
|
},
|
|
"location": {
|
|
"type": "String",
|
|
"defaultValue" : "West US",
|
|
"metadata": {
|
|
"Description": "Location to deploy to"
|
|
}
|
|
},
|
|
"faultDomainCount":{
|
|
"type":"String",
|
|
"defaultValue":"3",
|
|
"metadata": {
|
|
"Description": "Count of Fault Domains"
|
|
}
|
|
}
|
|
},
|
|
"resources": [
|
|
{
|
|
"type": "Microsoft.Compute/availabilitySets",
|
|
"name": "[parameters('availabilitySetName')]",
|
|
"apiVersion": "2014-12-01-preview",
|
|
"location": "[parameters('location')]",
|
|
"properties": {
|
|
"PlatformFaultDomainCount":"[parameters('faultDomainCount')]"
|
|
}
|
|
}
|
|
]
|
|
} |