From 02bb13dd243cceaf38e66c1bf6b08288590b5b41 Mon Sep 17 00:00:00 2001 From: Eric Bland Date: Mon, 25 Sep 2023 11:24:32 -0500 Subject: [PATCH] Template change added the "," after "dataDisks":[ ]" and at the end of the changed code. --- Instructions/Labs/LAB_08-Manage_Virtual_Machines.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Instructions/Labs/LAB_08-Manage_Virtual_Machines.md b/Instructions/Labs/LAB_08-Manage_Virtual_Machines.md index 12afa8a9..16e06709 100644 --- a/Instructions/Labs/LAB_08-Manage_Virtual_Machines.md +++ b/Instructions/Labs/LAB_08-Manage_Virtual_Machines.md @@ -290,7 +290,7 @@ In this task you will scale compute for Azure virtual machines by changing their >**Note**: This section of the template defines the same Azure virtual machine size as the one you specified for the first virtual machine via the Azure portal. -1. On the **Edit template** blade, in the section displaying the content of the template, replace line (`"dataDisks": [ ]` line) with the following code : +1. On the **Edit template** blade, in the section displaying the content of the template, replace line **51** (`"dataDisks": [ ],`) with the following code : ```json "dataDisks": [ @@ -308,7 +308,7 @@ In this task you will scale compute for Azure virtual machines by changing their "caching": "ReadOnly", "createOption": "Empty" } - ] + ], ``` >**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.