From 9e77f2fbe47dc7622e8911484875e258a142ff52 Mon Sep 17 00:00:00 2001 From: Eric Bland Date: Sat, 24 Oct 2020 19:21:33 -0500 Subject: [PATCH 1/4] Update LAB_03b-Manage_Azure_Resources_by_Using_ARM_Templates.md Correct the download of the template so that the parameters.json file is usable. --- ...e_Azure_Resources_by_Using_ARM_Templates.md | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/Instructions/Labs/LAB_03b-Manage_Azure_Resources_by_Using_ARM_Templates.md b/Instructions/Labs/LAB_03b-Manage_Azure_Resources_by_Using_ARM_Templates.md index 10dbc2c8..b8988911 100644 --- a/Instructions/Labs/LAB_03b-Manage_Azure_Resources_by_Using_ARM_Templates.md +++ b/Instructions/Labs/LAB_03b-Manage_Azure_Resources_by_Using_ARM_Templates.md @@ -28,7 +28,7 @@ In this lab, you will: In this task, you will create an Azure disk resource by using an Azure Resource Manager template. -1. Sign in to the [Azure portal](https://portal.azure.com). +1. Sign in to the [**Azure portal**](https://portal.azure.com). 1. In the Azure portal, search for and select **Resource groups**. @@ -36,23 +36,27 @@ In this task, you will create an Azure disk resource by using an Azure Resource 1. On the **az104-03a-rg1** resource group blade, in the **Settings** section, click **Deployments**. -1. On the **az104-03a-rg1 - Deployments** blade, click the first entry in the list of deployments and then click **View template**. +1. On the **az104-03a-rg1 - Deployments** blade, click the first entry in the list of deployments. - >**Note**: Review the content of the template and note that you have the option to download it to the local computer, add it to the library, and re-deploy it. +1. At the left, click **Template**. + + >**Note**: Review the content of the template and note that you have the option to **Download** it to the local computer, **Add to library**, and **Deploy** it. 1. Click **Download** and save the compressed file containing the template and parameters files to the **Downloads** folder on your lab computer. 1. Extract the content of the downloaded file into the **Downloads** folder on your lab computer. >**Note**: These files are also available as **\\Allfiles\\Labs\\03\\az104-03b-md-template.json** and **\\Allfiles\\Labs\\03\\az104-03b-md-parameters.json** + +1. Close all **File Explorer** windows. #### Task 2: Create an Azure managed disk by using an ARM template -1. In the Azure portal, search for and select **Template deployment (Deploy a custom template)**. +1. In the Azure portal, search for and select **Deploy a custom template**. 1. On the **Custom deployment** blade, click **Build your own template in the editor**. -1. On the **Edit template** blade, click **Load file** and upload the template file you downloaded in the previous step. +1. On the **Edit template** blade, click **Load file** and upload the **template.json** file you downloaded in the previous task. 1. Within the editor pane, remove the following lines: @@ -81,11 +85,11 @@ In this task, you will create an Azure disk resource by using an Azure Resource >**Note**: These parameters are removed since they are not applicable to the current deployment. In particular, sourceResourceId, sourceUri, osType, and hyperVGeneration parameters are applicable to creating an Azure disk from an existing VHD file. -1. Save the changes. +1. **Save** the changes. 1. Back on the **Custom deployment** blade, click **Edit parameters**. -1. On the **Edit parameters** blade, click **Load file** and upload the parameters file **\\Allfiles\\Labs\\03\\az104-03b-md-parameters.json** and save the changes. +1. On the **Edit parameters** blade, click **Load file** and upload the **parameters.json** file you downloaded in the previous task, and **Save** the changes. 1. Back on the **Custom deployment** blade, specify the following settings: From b8b4d416592958f5c2cbd7b7b747abd9607daa7a Mon Sep 17 00:00:00 2001 From: Eric Bland Date: Sat, 24 Oct 2020 19:25:24 -0500 Subject: [PATCH 2/4] Update LAB_03b-Manage_Azure_Resources_by_Using_ARM_Templates.md Added name of the blade. --- .../LAB_03b-Manage_Azure_Resources_by_Using_ARM_Templates.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Instructions/Labs/LAB_03b-Manage_Azure_Resources_by_Using_ARM_Templates.md b/Instructions/Labs/LAB_03b-Manage_Azure_Resources_by_Using_ARM_Templates.md index b8988911..ece45f70 100644 --- a/Instructions/Labs/LAB_03b-Manage_Azure_Resources_by_Using_ARM_Templates.md +++ b/Instructions/Labs/LAB_03b-Manage_Azure_Resources_by_Using_ARM_Templates.md @@ -38,7 +38,7 @@ In this task, you will create an Azure disk resource by using an Azure Resource 1. On the **az104-03a-rg1 - Deployments** blade, click the first entry in the list of deployments. -1. At the left, click **Template**. +1. On the **Microsoft.ManagedDisk-*XXXXXXXXX* \| Overview** blade, click **Template**. >**Note**: Review the content of the template and note that you have the option to **Download** it to the local computer, **Add to library**, and **Deploy** it. From a9ef4b0b44815eef84659e814b76b39e0605ff30 Mon Sep 17 00:00:00 2001 From: Eric Bland Date: Sat, 24 Oct 2020 19:30:33 -0500 Subject: [PATCH 3/4] Update LAB_03b-Manage_Azure_Resources_by_Using_ARM_Templates.md Corrected item in the table --- .../LAB_03b-Manage_Azure_Resources_by_Using_ARM_Templates.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Instructions/Labs/LAB_03b-Manage_Azure_Resources_by_Using_ARM_Templates.md b/Instructions/Labs/LAB_03b-Manage_Azure_Resources_by_Using_ARM_Templates.md index ece45f70..34603502 100644 --- a/Instructions/Labs/LAB_03b-Manage_Azure_Resources_by_Using_ARM_Templates.md +++ b/Instructions/Labs/LAB_03b-Manage_Azure_Resources_by_Using_ARM_Templates.md @@ -40,7 +40,7 @@ In this task, you will create an Azure disk resource by using an Azure Resource 1. On the **Microsoft.ManagedDisk-*XXXXXXXXX* \| Overview** blade, click **Template**. - >**Note**: Review the content of the template and note that you have the option to **Download** it to the local computer, **Add to library**, and **Deploy** it. + >**Note**: Review the content of the template and note that you have the option to **Download** it to the local computer, **Add to library**, or **Deploy** it again. 1. Click **Download** and save the compressed file containing the template and parameters files to the **Downloads** folder on your lab computer. @@ -97,7 +97,7 @@ In this task, you will create an Azure disk resource by using an Azure Resource | --- |--- | | Subscription | the name of the Azure subscription you are using in this lab | | Resource Group | the name of a new resource group **az104-03b-rg1** | - | Location | the name of any Azure region available in the subscription you are using in this lab | + | Region | the name of any Azure region available in the subscription you are using in this lab | | Disk Name | **az104-03b-disk1** | | Location | accept the default value | | Sku | **Standard_LRS** | From beb65fa407fb7b4e092ac7b4219ecef49c6aa413 Mon Sep 17 00:00:00 2001 From: Eric Bland Date: Sat, 24 Oct 2020 20:14:50 -0500 Subject: [PATCH 4/4] Update LAB_03b-Manage_Azure_Resources_by_Using_ARM_Templates.md Formatting in the table. --- ...LAB_03b-Manage_Azure_Resources_by_Using_ARM_Templates.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Instructions/Labs/LAB_03b-Manage_Azure_Resources_by_Using_ARM_Templates.md b/Instructions/Labs/LAB_03b-Manage_Azure_Resources_by_Using_ARM_Templates.md index 34603502..11093c76 100644 --- a/Instructions/Labs/LAB_03b-Manage_Azure_Resources_by_Using_ARM_Templates.md +++ b/Instructions/Labs/LAB_03b-Manage_Azure_Resources_by_Using_ARM_Templates.md @@ -95,11 +95,11 @@ In this task, you will create an Azure disk resource by using an Azure Resource | Setting | Value | | --- |--- | - | Subscription | the name of the Azure subscription you are using in this lab | - | Resource Group | the name of a new resource group **az104-03b-rg1** | + | Subscription | *the name of the Azure subscription you are using in this lab* | + | Resource Group | the name of a **new** resource group **az104-03b-rg1** | | Region | the name of any Azure region available in the subscription you are using in this lab | | Disk Name | **az104-03b-disk1** | - | Location | accept the default value | + | Location | *accept the default value* | | Sku | **Standard_LRS** | | Disk Size Gb | **32** | | Create Option | **empty** |