自分の勉強もかねて、テンプレートをカスタマイズしてみたので、参考までに公開します。
もっと洗練された方法があればコメントもらえるとありがたいです。
カスタマイズした元ネタは、azure-quickstart-templates / 101-vm-simple-windows /です。
※2016/05/17 確認したところ、本記事のJSONファイルでは、仮想ネットワークは都度作成(つまり上書き)されることがわかりましたので、訂正します。
下記に疑問点として記載した通り、仮想ネットワークのフルセット記述不要です。既存の仮想ネットワークに関連付ける方法は調べたうえで、別途ブログ記事として投稿しようと思います。
同様にストレージアカウントも関連付けの設定がありそうか否かを確認しようと思います。
こちらの変更点は、diffをとってみました。現在、Insider Preview で提供されているBash上でdiffを使いました!!!
Virtual Machineの名前を指定できるようにし、OSディスクやデータディスク、ネットワークインターフェースに付与しています。
元々のテンプレートがハードコーディングだったので、そこは直したいなーと思いましたので。
4a5,10 > "vmName": { > "type": "string", > "metadata": { > "description": "name for the Virtual Machine." > } > }, 37c43 < "storageAccountName": "[concat(uniquestring(resourceGroup().id), 'sawinvm')]", --- > "storageAccountName": "armstorageact01", 39c45 < "dataDisk1VhdName": "datadisk1", --- > "dataDisk1VhdName": "[concat(variables('vmName'),'-data1')]", 42,43c48,49 < "OSDiskName": "osdiskforwindowssimple", < "nicName": "myVMNic", --- > "OSDiskName": "[concat(variables('vmName'),'-os')]", > "nicName": "[concat(variables('vmName'),'-nic1')]", 45c51 < "subnetName": "Subnet", --- > "subnetName": "Subnet1", 51c57 < "vmName": "SimpleWindowsVM", --- > "vmName": "[parameters('vmName')]", 53c59 < "virtualNetworkName": "MyVNET", --- > "virtualNetworkName": "ArmVNet1", 61c67 < "name": "[object Object]sawinvm", --- > "name": "[variables('storageAccountName')]", 83c89 < "name": "MyVNET", --- > "name": "[variables('virtualNetworkName')]", 104c110 < "name": "myVMNic", --- > "name": "[variables('nicName')]", 130c136 < "name": "SimpleWindowsVM", --- > "name": "[variables('vmName')]",
疑問なのは、
- ストレージアカウントは、フルセットの記述ってやっぱり要る?
- パブリックIPは、Virtual Machine毎に付与?今回は、ハードコーディングのままにしていますが。
- 仮想ネットワークは、ネットワークインタフェースにアサインするために、フルセットの記述にしているのは、正しい?
ということで、カスタマイズしたコードを下記に貼っておきます。
{ "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmName": { "type": "string", "metadata": { "description": "name for the Virtual Machine." } }, "adminUsername": { "type": "string", "metadata": { "description": "Username for the Virtual Machine." } }, "adminPassword": { "type": "securestring", "metadata": { "description": "Password for the Virtual Machine." } }, "dnsLabelPrefix": { "type": "string", "metadata": { "description": "Unique DNS Name for the Public IP used to access the Virtual Machine." } }, "windowsOSVersion": { "type": "string", "defaultValue": "2012-R2-Datacenter", "allowedValues": [ "2008-R2-SP1", "2012-Datacenter", "2012-R2-Datacenter" ], "metadata": { "description": "The Windows version for the VM. This will pick a fully patched image of this given Windows version. Allowed values: 2008-R2-SP1, 2012-Datacenter, 2012-R2-Datacenter." } } }, "variables": { "storageAccountName": "armstorageact01", "sizeOfDiskInGB": "100", "dataDisk1VhdName": "[concat(variables('vmName'),'-data1')]", "imagePublisher": "MicrosoftWindowsServer", "imageOffer": "WindowsServer", "OSDiskName": "[concat(variables('vmName'),'-os')]", "nicName": "[concat(variables('vmName'),'-nic1')]", "addressPrefix": "10.0.0.0/16", "subnetName": "Subnet1", "subnetPrefix": "10.0.0.0/24", "storageAccountType": "Standard_LRS", "publicIPAddressName": "myPublicIP", "publicIPAddressType": "Dynamic", "vmStorageAccountContainerName": "vhds", "vmName": "[parameters('vmName')]", "vmSize": "Standard_D1", "virtualNetworkName": "ArmVNet1", "vnetID": "[resourceId('Microsoft.Network/virtualNetworks',variables('virtualNetworkName'))]", "subnetRef": "[concat(variables('vnetID'),'/subnets/',variables('subnetName'))]", "apiVersion": "2015-06-15" }, "resources": [ { "type": "Microsoft.Storage/storageAccounts", "name": "[variables('storageAccountName')]", "apiVersion": "[variables('apiVersion')]", "location": "[resourceGroup().location]", "properties": { "accountType": "[variables('storageAccountType')]" } }, { "apiVersion": "[variables('apiVersion')]", "type": "Microsoft.Network/publicIPAddresses", "name": "myPublicIP", "location": "[resourceGroup().location]", "properties": { "publicIPAllocationMethod": "[variables('publicIPAddressType')]", "dnsSettings": { "domainNameLabel": "[parameters('dnsLabelPrefix')]" } } }, { "apiVersion": "[variables('apiVersion')]", "type": "Microsoft.Network/virtualNetworks", "name": "[variables('virtualNetworkName')]", "location": "[resourceGroup().location]", "properties": { "addressSpace": { "addressPrefixes": [ "[variables('addressPrefix')]" ] }, "subnets": [ { "name": "[variables('subnetName')]", "properties": { "addressPrefix": "[variables('subnetPrefix')]" } } ] } }, { "apiVersion": "[variables('apiVersion')]", "type": "Microsoft.Network/networkInterfaces", "name": "[variables('nicName')]", "location": "[resourceGroup().location]", "dependsOn": [ "[concat('Microsoft.Network/publicIPAddresses/', variables('publicIPAddressName'))]", "[concat('Microsoft.Network/virtualNetworks/', variables('virtualNetworkName'))]" ], "properties": { "ipConfigurations": [ { "name": "ipconfig1", "properties": { "privateIPAllocationMethod": "Dynamic", "publicIPAddress": { "id": "[resourceId('Microsoft.Network/publicIPAddresses',variables('publicIPAddressName'))]" }, "subnet": { "id": "[variables('subnetRef')]" } } } ] } }, { "apiVersion": "[variables('apiVersion')]", "type": "Microsoft.Compute/virtualMachines", "name": "[variables('vmName')]", "location": "[resourceGroup().location]", "dependsOn": [ "[concat('Microsoft.Storage/storageAccounts/', variables('storageAccountName'))]", "[concat('Microsoft.Network/networkInterfaces/', variables('nicName'))]" ], "properties": { "hardwareProfile": { "vmSize": "[variables('vmSize')]" }, "osProfile": { "computerName": "[variables('vmName')]", "adminUsername": "[parameters('adminUsername')]", "adminPassword": "[parameters('adminPassword')]" }, "storageProfile": { "imageReference": { "publisher": "[variables('imagePublisher')]", "offer": "[variables('imageOffer')]", "sku": "[parameters('windowsOSVersion')]", "version": "latest" }, "osDisk": { "name": "osdisk", "vhd": { "uri": "[concat('http://',variables('storageAccountName'),'.blob.core.windows.net/',variables('vmStorageAccountContainerName'),'/',variables('OSDiskName'),'.vhd')]" }, "caching": "ReadWrite", "createOption": "FromImage" }, "dataDisks": [ { "name": "datadisk1", "diskSizeGB": "[variables('sizeOfDiskInGB')]", "lun": 0, "vhd": { "uri": "[concat('http://',variables('storageAccountName'),'.blob.core.windows.net/',variables('vmStorageAccountContainerName'),'/',variables('dataDisk1VhdName'),'.vhd')]" }, "createOption": "Empty" } ] }, "networkProfile": { "networkInterfaces": [ { "id": "[resourceId('Microsoft.Network/networkInterfaces',variables('nicName'))]" } ] }, "diagnosticsProfile": { "bootDiagnostics": { "enabled": "true", "storageUri": "[concat('http://',variables('storageAccountName'),'.blob.core.windows.net')]" } } } } ] }
おいおい、ここにパブリックIPアドレス経由でのRDP接続を追記していきたいですね。
0 件のコメント:
コメントを投稿