mirror of
https://github.com/MicrosoftLearning/AZ-104-MicrosoftAzureAdministrator.git
synced 2026-02-04 15:49:09 +00:00
53 lines
1.3 KiB
JSON
53 lines
1.3 KiB
JSON
{
|
|
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
|
|
"contentVersion": "1.0.0.0",
|
|
"parameters": {
|
|
"diskName": {
|
|
"type": "String"
|
|
},
|
|
"location": {
|
|
"type": "String"
|
|
},
|
|
"sku": {
|
|
"type": "String"
|
|
},
|
|
"diskSizeGb": {
|
|
"type": "String"
|
|
},
|
|
"sourceResourceId": {
|
|
"type": "String"
|
|
},
|
|
"sourceUri": {
|
|
"type": "String"
|
|
},
|
|
"osType": {
|
|
"type": "String"
|
|
},
|
|
"createOption": {
|
|
"type": "String"
|
|
},
|
|
"hyperVGeneration": {
|
|
"defaultValue": "V1",
|
|
"type": "String"
|
|
}
|
|
},
|
|
"resources": [
|
|
{
|
|
"type": "Microsoft.Compute/disks",
|
|
"apiVersion": "2019-07-01",
|
|
"name": "[parameters('diskName')]",
|
|
"location": "[parameters('location')]",
|
|
"tags": {},
|
|
"sku": {
|
|
"name": "[parameters('sku')]"
|
|
},
|
|
"properties": {
|
|
"creationData": {
|
|
"createOption": "[parameters('createOption')]"
|
|
},
|
|
"diskSizeGB": "[parameters('diskSizeGb')]",
|
|
"osType": "[parameters('osType')]"
|
|
}
|
|
}
|
|
]
|
|
} |