From fd6cead29a1965e8dc7bcb23cc5f4768ab233af9 Mon Sep 17 00:00:00 2001 From: George Smpyrakis Date: Thu, 16 Jul 2020 12:21:02 +1000 Subject: [PATCH 1/2] added minor changes to avoid confusion in lab 8. Fixed updated Password complexity in lab 9a --- Instructions/Labs/LAB_08-Manage_Virtual_Machines.md | 4 ++++ Instructions/Labs/LAB_09a-Implement_Web_Apps.md | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/Instructions/Labs/LAB_08-Manage_Virtual_Machines.md b/Instructions/Labs/LAB_08-Manage_Virtual_Machines.md index 7d611bf9..de58374a 100644 --- a/Instructions/Labs/LAB_08-Manage_Virtual_Machines.md +++ b/Instructions/Labs/LAB_08-Manage_Virtual_Machines.md @@ -106,7 +106,9 @@ In this task, you will deploy Azure virtual machines into different availability | --- | --- | | Resource group | **az104-08-rg01** | | Network Interface Name | **az104-08-vm1-nic1** | + | Public Ip Address Name | **az104-08-vm1-ip** | | Virtual Machine Name | **az104-08-vm1** | + | Virtual Machine Computer Name | **az104-08-vm1** | | Admin Username | **Student** | | Admin Password | **Pa55w.rd1234** | | Zone | **2** | @@ -160,6 +162,8 @@ In this task, you will install Windows Server Web Server role on the two Azure v 1. On the **Edit template** blade, in the section displaying the content of the template, insert the following code starting with line **20** (directly underneath the ` "resources": [` line): + >**Note**: If you are using a tool that pastes the code in line by line intellisense may add extra brackets causing validation errors. You may want to paste the code into notepad first and then paste it into line 20. + ```json { "type": "Microsoft.Compute/virtualMachines/extensions", diff --git a/Instructions/Labs/LAB_09a-Implement_Web_Apps.md b/Instructions/Labs/LAB_09a-Implement_Web_Apps.md index cc12991a..d9dcef7a 100644 --- a/Instructions/Labs/LAB_09a-Implement_Web_Apps.md +++ b/Instructions/Labs/LAB_09a-Implement_Web_Apps.md @@ -105,7 +105,7 @@ In this task, you will configure web app deployment settings. | Setting | Value | | --- | ---| | User name | any unique name | - | Password | **Pa55w0rd1234** | + | Password | **P@55w0rd1234** | >**Note:** You will need these credentials in the next task of this lab. From d9e85ba68f3f17d3ee1d45c89b54417bcc91b6da Mon Sep 17 00:00:00 2001 From: George Smpyrakis Date: Thu, 16 Jul 2020 15:47:14 +1000 Subject: [PATCH 2/2] Added minor changes to lab 8 and 9 --- Instructions/Labs/LAB_08-Manage_Virtual_Machines.md | 9 ++++++--- Instructions/Labs/LAB_09a-Implement_Web_Apps.md | 2 +- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/Instructions/Labs/LAB_08-Manage_Virtual_Machines.md b/Instructions/Labs/LAB_08-Manage_Virtual_Machines.md index de58374a..6e7eacdc 100644 --- a/Instructions/Labs/LAB_08-Manage_Virtual_Machines.md +++ b/Instructions/Labs/LAB_08-Manage_Virtual_Machines.md @@ -212,11 +212,11 @@ In this task you will scale compute for Azure virtual machines by changing their 1. In the Azure portal, search for and select **Virtual machines** and, on the **Virtual machines** blade, click **az104-08-vm0**. -1. On the **az104-08-vm0** virtual machine blade, click **Size** and set the virtual machine size to **Standard DS1_v2** +1. On the **az104-08-vm0** virtual machine blade, click **Size** and set the virtual machine size to **Standard DS1_v2** and click **Resize** >**Note**: Choose another size if **Standard DS1_v2** is not available. -1. On the **az104-08-vm0** virtual machine blade, click **Disks**, click **+ Add data disk**, and, in the **Name** drop down list, click **Create disk**. +1. On the **az104-08-vm0** virtual machine blade, click **Disks**, Under **Data disks** click **+ Create and attach a new disk**. 1. Create a managed disk with the following settings (leave others with their default values): @@ -228,7 +228,7 @@ In this task you will scale compute for Azure virtual machines by changing their | Size | **1024 GiB** | -1. Back on the **az104-08-vm0 - Disks** blade, click **+ Add data disk**, and, in the **Name** drop down list, click **Create disk**. +1. Back on the **az104-08-vm0 - Disks** blade, Under **Data disks** click **+ Create and attach a new disk**. 1. Create a managed disk with the following settings (leave others with their default values): @@ -296,8 +296,11 @@ In this task you will scale compute for Azure virtual machines by changing their ] ``` + >**Note**: If you are using a tool that pastes the code in line by line intellisense may add extra brackets causing validation errors. You may want to paste the code into notepad first and then paste it into line 49. + >**Note**: This section of the template creates two managed disks and attaches them to **az104-08-vm1**, similarly to the storage configuration of the first virtual machine via the Azure portal. + 1. Click **Save** and, back on the **Custom template** blade, enable the checkbox **I agree to the terms and conditions stated above** and click **Purchase**. >**Note**: Disregard the message stating **The resource group is in a location that is not supported by one or more resources in the template. Please choose a different resource group**. This is expected and can be ignored in this case. diff --git a/Instructions/Labs/LAB_09a-Implement_Web_Apps.md b/Instructions/Labs/LAB_09a-Implement_Web_Apps.md index d9dcef7a..dfae1869 100644 --- a/Instructions/Labs/LAB_09a-Implement_Web_Apps.md +++ b/Instructions/Labs/LAB_09a-Implement_Web_Apps.md @@ -144,7 +144,7 @@ In this task, you will deploy code to the staging deployment slot. git push [deployment_user_name] master ``` -1. If prompted to authenticate, type the `[deployment_user_name]` and the corresponding password (**Pa55w0rd1234**). +1. If prompted to authenticate, type the `[deployment_user_name]` and the corresponding password (**P@55w0rd1234**). 1. Close the Cloud Shell pane.