new Api Version, dynamic Storage Uri to support multi cloud environments e.g. Microsoft Cloud Deutschland.

This commit is contained in:
Daniel Falkner 2016-08-22 15:34:45 +02:00
parent 78698bd2ff
commit cd7febb13d

View File

@ -120,14 +120,16 @@
{ {
"type": "Microsoft.Storage/storageAccounts", "type": "Microsoft.Storage/storageAccounts",
"name": "[variables('storageName')]", "name": "[variables('storageName')]",
"apiVersion": "[variables('apiVersion')]", "apiVersion": "2016-01-01",
"location": "[variables('location')]", "location": "[variables('location')]",
"tags": { "tags": {
"displayName": "StorageAccount" "displayName": "StorageAccount"
}, },
"properties": { "properties": {},
"accountType": "[variables('vhdStorageType')]" "sku": {
} "name": "[variables('vhdStorageType')]"
},
"kind": "Storage"
}, },
{ {
"apiVersion": "[variables('apiVersion')]", "apiVersion": "[variables('apiVersion')]",
@ -187,9 +189,9 @@
} }
}, },
{ {
"apiVersion": "[variables('apiVersion')]",
"type": "Microsoft.Compute/virtualMachines", "type": "Microsoft.Compute/virtualMachines",
"name": "[variables('vmName')]", "name": "[variables('vmName')]",
"apiVersion": "2016-03-30",
"location": "[resourceGroup().location]", "location": "[resourceGroup().location]",
"tags": { "tags": {
"displayName": "VirtualMachine" "displayName": "VirtualMachine"
@ -211,7 +213,7 @@
"osDisk": { "osDisk": {
"name": "osdisk", "name": "osdisk",
"vhd": { "vhd": {
"uri": "[concat('http://', variables('storageName'), '.blob.core.windows.net/vmachines/', variables('vmName'), '.vhd')]" "uri": "[concat(reference(resourceId('Microsoft.Storage/storageAccounts/', variables('storageName'))).primaryEndpoints.blob, 'vmachines/', variables('vmName'), '.vhd')]"
}, },
"caching": "ReadWrite", "caching": "ReadWrite",
"createOption": "FromImage" "createOption": "FromImage"