James Bannan Freddy vs JSON: Azure Resource Manager CLD44 3
Core ARM Template Structure
Template Resource
ARM Schema Definitions (Git)
Parameters
Parameters File
Variables
ARM Deployment – Azure PowerShell
@additionalParameters
ARM Deployment – Azure CLI azure group create “demoRG" "West US" -f azuredeploy.json -d “demoDeploy" -e azuredeploy.parameters.json
Multiple resources "parameters": { "count": { "type": "int", "defaultValue": 3 } }, "resources": [ { "name": "[concat('examplecopy-', copyIndex())]", "type": "Microsoft.Web/sites", "location": "East US", "apiVersion": " ", "copy": { "name": "websitescopy", "count": "[parameters('count')]“ }, } ]
Continue your Ignite learning path Visit Microsoft Virtual Academy for free online training visit Visit Channel 9 to access a wide range of Microsoft training and event recordings Head to the TechNet Eval Centre to download trials of the latest Microsoft products
@jamesbannan Freddy vs JSON: Azure Resource Manager CLD44 3