From 3dd4f0c8b488097ba7613ac1686d1b6c2600510b Mon Sep 17 00:00:00 2001 From: Brian Moore Date: Wed, 30 Oct 2019 12:03:33 -0500 Subject: [PATCH] updates --- ARM Template/05 - Reusability/Guide.md | 25 ++- .../05 - Reusability/final-05-bonus.json | 135 ----------------- ARM Template/05 - Reusability/final-05.json | 142 +++++++++--------- ARM Template/05 - Reusability/vm.json | 2 +- 4 files changed, 80 insertions(+), 224 deletions(-) delete mode 100644 ARM Template/05 - Reusability/final-05-bonus.json diff --git a/ARM Template/05 - Reusability/Guide.md b/ARM Template/05 - Reusability/Guide.md index a38ee8d..af0686e 100644 --- a/ARM Template/05 - Reusability/Guide.md +++ b/ARM Template/05 - Reusability/Guide.md @@ -55,6 +55,13 @@ Next, add some parameters to the my-vm.json template to make it more flexible fo ``` - Update the computerName property in the osProfile object to use the vmName parameter as well + +- Update the name property on the networkInterce resource so that each VM will have a networkInterface with the same naming pattern as the VM itself + +```json + "name": "[concat(parameters('vmName'), '-nic')]", +``` + - Save your changes to the my-vm.json file ### Verify the Changes @@ -83,7 +90,7 @@ Next, add a deployment resource to the template. This resource will be used to "type": "Microsoft.Resources/deployments", "apiVersion": "2019-05-01", "dependsOn": [ - "[variables('subnetId')]" + "[variables('virtualNetworkName')]" ], "properties": { "mode": "Incremental", @@ -134,17 +141,7 @@ az group deployment create --resource-group IoC-02-000000 --template-file azured After the deployment completes, or while the deployment is in process, you can open the Azure Portal and see the resources deployed into your resource group. - - - - -## Finish - -This is the end of this section of the lab. To see a finished solution, see the final.json file in this folder. - -But wait there's more! If you really want to see the power of what you created, continue on to the bonus section of this lab... - -## Bonus - Add Copy Loop To Deploy Multiple VMs +## Add Copy Loop To Deploy Multiple VMs Next, add a copy loop on the deployment resource that deploys the VM. This will allow the template to create multiple VMs in a single deployment without duplicating the code. @@ -169,8 +166,8 @@ Next, add a copy loop on the deployment resource that deploys the VM. This will "value": "[concat('vm-', copyIndex())]" ``` -This loop will create 3 VMs with the names vm-0, vm-1 and vm-2 in the resourceGroup. +This loop will create 3 VMs with the names vm-0, vm-1 and vm-2 in the resourceGroup. Deploy the template to see the results. -## Finish - Bonus +## Finish This is the end of the bonus section of the lab. To see a finished solution, see the final.json file in this folder. diff --git a/ARM Template/05 - Reusability/final-05-bonus.json b/ARM Template/05 - Reusability/final-05-bonus.json deleted file mode 100644 index 9cf8681..0000000 --- a/ARM Template/05 - Reusability/final-05-bonus.json +++ /dev/null @@ -1,135 +0,0 @@ -{ - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", - "contentVersion": "1.0.0.0", - "parameters": { - "nsgRules": { - "type": "array", - "defaultValue": [ - 22, - 80, - 443 - ] - }, - "location": { - "type": "string", - "defaultValue": "[resourceGroup().location]" - }, - "adminUsername": { - "type": "string" - }, - "adminPassword": { - "type": "securestring" - } - }, - "variables": { - "nsgName": "nsg", - "virtualNetworkName": "virtualNetwork", - "subnet1Name": "subnet-1", - "subnetId": "[resourceId('Microsoft.Network/virtualNetworks/subnets', variables('virtualNetworkName'), variables('subnet1Name'))]" - }, - "resources": [ - { - "type": "Microsoft.Network/virtualNetworks", - "apiVersion": "2019-06-01", - "name": "virtualNetwork", - "location": "[parameters('location')]", - "properties": { - "addressSpace": { - "addressPrefixes": [ - "10.0.0.0/16" - ] - } - }, - "resources": [ - { - "type": "subnets", - "apiVersion": "2019-06-01", - "name": "subnet-1", - "dependsOn": [ - "[variables('nsgName')]", - "virtualNetwork" - ], - "properties": { - "networkSecurityGroup": { - "id": "[resourceId('Microsoft.Network/networkSecurityGroups', variables('nsgName'))]" - }, - "addressPrefix": "10.0.0.0/24" - } - }, - { - "type": "subnets", - "apiVersion": "2019-06-01", - "name": "subnet-2", - "dependsOn": [ - "virtualNetwork", - "subnet-1" - ], - "properties": { - "addressPrefix": "10.0.1.0/24" - } - } - ] - }, - { - "type": "Microsoft.Network/networkSecurityGroups", - "apiVersion": "2019-06-01", - "name": "[variables('nsgName')]", - "location": "[parameters('location')]", - "properties": { - "copy": { - "name": "securityRules", - "count": "[length(parameters('nsgRules'))]", - "input": { - "name": "[concat('allow-', parameters('nsgRules')[copyIndex('securityRules')])]", - "properties": { - "priority": "[add(1000, copyIndex('securityRules'))]", - "sourceAddressPrefix": "*", - "protocol": "Tcp", - "destinationPortRange": "[parameters('nsgRules')[copyIndex('securityRules')]]", - "access": "Allow", - "direction": "Inbound", - "sourcePortRange": "*", - "destinationAddressPrefix": "*" - } - } - } - } - }, - { - "name": "[concat('create-vm', copyIndex())]", - "type": "Microsoft.Resources/deployments", - "apiVersion": "2019-05-01", - "dependsOn": [ - "[variables('subnetId')]" - ], - "copy": { - "name": "vmLoop", - "count": 3 - }, - "properties": { - "mode": "Incremental", - "templateLink": { - "uri": "https://raw.githubusercontent.com/.../vm.json", - "contentVersion": "1.0.0.0" - }, - "parameters": { - "vmName": { - "value": "[concat('vm-', copyIndex())]" - }, - "adminUsername": { - "value": "[parameters('adminUsername')]" - }, - "adminPassword": { - "value": "[parameters('adminPassword')]" - }, - "location": { - "value": "[parameters('location')]" - }, - "subnetId": { - "value": "[variables('subnetId')]" - } - } - } - } - ] -} diff --git a/ARM Template/05 - Reusability/final-05.json b/ARM Template/05 - Reusability/final-05.json index 95064be..13b2472 100644 --- a/ARM Template/05 - Reusability/final-05.json +++ b/ARM Template/05 - Reusability/final-05.json @@ -29,91 +29,25 @@ }, "resources": [ { - "type": "Microsoft.Network/virtualNetworks", - "apiVersion": "2019-06-01", - "name": "virtualNetwork", - "location": "[parameters('location')]", - "properties": { - "addressSpace": { - "addressPrefixes": [ - "10.0.0.0/16" - ] - } - }, - "resources": [ - { - "type": "subnets", - "apiVersion": "2019-06-01", - "name": "subnet-1", - "dependsOn": [ - "[variables('nsgName')]", - "virtualNetwork" - ], - "properties": { - "networkSecurityGroup": { - "id": "[resourceId('Microsoft.Network/networkSecurityGroups', variables('nsgName'))]" - }, - "addressPrefix": "10.0.0.0/24" - } - }, - { - "type": "subnets", - "apiVersion": "2019-06-01", - "name": "subnet-2", - "dependsOn": [ - "virtualNetwork", - "subnet-1" - ], - "properties": { - "addressPrefix": "10.0.1.0/24" - } - } - ] - }, - { - "type": "Microsoft.Network/networkSecurityGroups", - "apiVersion": "2019-06-01", - "name": "[variables('nsgName')]", - "location": "[parameters('location')]", - "dependsOn": [ - "[variables('subnetId')]" - ], - "properties": { - "copy": { - "name": "securityRules", - "count": "[length(parameters('nsgRules'))]", - "input": { - "name": "[concat('allow-', parameters('nsgRules')[copyIndex('securityRules')])]", - "properties": { - "priority": "[add(1000, copyIndex('securityRules'))]", - "sourceAddressPrefix": "*", - "protocol": "Tcp", - "destinationPortRange": "[parameters('nsgRules')[copyIndex('securityRules')]]", - "access": "Allow", - "direction": "Inbound", - "sourcePortRange": "*", - "destinationAddressPrefix": "*" - } - } - } - } - }, - { - "name": "create-vm", + "name": "[concat('create-vm', copyIndex())]", "type": "Microsoft.Resources/deployments", "apiVersion": "2019-05-01", "dependsOn": [ - "[variables('subnetId')]" + "[variables('virtualNetworkName')]" ], + "copy": { + "name": "vmLoop", + "count": 3 + }, "properties": { "mode": "Incremental", "templateLink": { - "uri": "https://raw.githubusercontent.com/.../vm.json", + "uri": "https://raw.githubusercontent.com/Azure/Ignite2019_IaC_pre-day_docs/master/ARM%20Template/05%20-%20Reusability/vm.json", "contentVersion": "1.0.0.0" }, "parameters": { "vmName": { - "value": "linux-vm" + "value": "[concat('vm-', copyIndex())]" }, "adminUsername": { "value": "[parameters('adminUsername')]" @@ -129,6 +63,66 @@ } } } + }, + { + "type": "Microsoft.Network/networkSecurityGroups", + "apiVersion": "2019-06-01", + "name": "[variables('nsgName')]", + "location": "[parameters('location')]", + "properties": { + "copy": [ + { + "name": "securityRules", + "count": "[length(parameters('nsgRules'))]", + "input": { + "name": "[concat('allow-', parameters('nsgRules')[copyIndex('securityRules')])]", + "properties": { + "priority": "[add(1000, copyIndex('securityRules'))]", + "sourceAddressPrefix": "*", + "protocol": "Tcp", + "destinationPortRange": "[parameters('nsgRules')[copyIndex('securityRules')]]", + "access": "Allow", + "direction": "Inbound", + "sourcePortRange": "*", + "destinationAddressPrefix": "*" + } + } + } + ] + } + }, + { + "type": "Microsoft.Network/virtualNetworks", + "apiVersion": "2019-06-01", + "name": "virtualNetwork", + "location": "[parameters('location')]", + "dependsOn": [ + "[variables('nsgName')]" + ], + "properties": { + "addressSpace": { + "addressPrefixes": [ + "10.0.0.0/16" + ] + }, + "subnets": [ + { + "name": "subnet-2", + "properties": { + "addressPrefix": "10.0.1.0/24" + } + }, + { + "name": "subnet-1", + "properties": { + "networkSecurityGroup": { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups', variables('nsgName'))]" + }, + "addressPrefix": "10.0.0.0/24" + } + } + ] + } } ] } diff --git a/ARM Template/05 - Reusability/vm.json b/ARM Template/05 - Reusability/vm.json index a89181d..f08986e 100644 --- a/ARM Template/05 - Reusability/vm.json +++ b/ARM Template/05 - Reusability/vm.json @@ -26,7 +26,7 @@ { "type": "Microsoft.Network/networkInterfaces", "apiVersion": "2019-06-01", - "name": "[variables('nicName')]", + "name": "[concat(parameters('vmName'), '-nic')]", "location": "[parameters('location')]", "properties": { "ipConfigurations": [