Azure ARM (7) ARM Template - 使用Visual Studio編輯

來源:互聯網
上載者:User

標籤: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編輯

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.