標籤:color 文字編輯器 code soft 分享 post variable 部署 upn
《Windows Azure Platform 系列文章目錄》
之前介紹的ARM Template,都是使用文字編輯器來編輯JSON檔案的。
文本講介紹如何使用Visual Studio,編輯JSON Template。
本文使用Visual Studio 2015 with Update 3進行編輯,安裝了Azure SDK 2.9。
如果讀者使用的是Visual Studio 2013和Azure SDK 2.9,大部門的介面是和筆者的類似。筆者強烈建議安裝最新的Visual Studio和Azure SDK。
前提:
1.安裝Visual Studio 2015 with Update 3
2.安裝Azure SDK 2.9
1.運行Visual Studio 2015 with Update 3
2.建立一個Azure Resource Group項目。如:
3.模板選擇Blank Template
4.項目建立完畢後,不包含任何項目,我們選擇Templates,雙擊 azuredeploy.json
5.顯示如的JSON Outline,我們可以添加新的資源,點擊resources,郵件,Add New Resource。如:
6.在彈出的介面中,輸入Storage Account,然後色織storage account name (必須為小寫英文),如:
7.修改Visual Studio項目中的azuredeploy.json檔案,內容如下:
{ "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "leinewstorageType": { "type": "string", "defaultValue": "Standard_LRS", "allowedValues": [ "Standard_LRS", "Standard_ZRS", "Standard_GRS", "Standard_RAGRS", "Premium_LRS" ] }, "storageAccounts_leistorageaccount_name": { "defaultValue": "leistorageaccount", "type": "String" } }, "variables": { }, "resources": [ { "name": "[parameters(‘storageAccounts_leistorageaccount_name‘)]", "type": "Microsoft.Storage/storageAccounts", "location": "[resourceGroup().location]", "apiVersion": "2015-06-15", "dependsOn": [], "tags": { "displayName": "leinewstorage" }, "properties": { "accountType": "[parameters(‘leinewstorageType‘)]" } } ], "outputs": { }}
8.修改azuredeploy.parameters.json檔案,內容如下:
{ "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "storageAccounts_leistorageaccount_name": { "value": "leinewstorageaccount" } }}
最後通過Azure PowerShell進行發布,命令如下:
# sign inWrite-Host "Logging in...";Add-AzureRmAccount -EnvironmentName AzureChinaCloud;# select subscriptionWrite-Host "Selecting subscription ‘$subscriptionId‘";Select-AzureRmSubscription -SubscriptionID $subscriptionId;#建立Resource GroupNew-AzureRmResourceGroup -Name $resourceGroupName -Location $resourceGroupLocation#部署Template New-AzureRmResourceGroupDeployment -ResourceGroupName "[ResourceGroupName]" -TemplateFile "[FilePath]" -TemplateParameterFile ["ParameterFilePath"];
參考資料:https://azure.microsoft.com/en-us/documentation/articles/vs-azure-tools-resource-groups-deployment-projects-create-deploy/
Azure ARM (7) ARM Template - 使用Visual Studio編輯