Template change

added the "," after "dataDisks":[ ]" and at the end of the changed code.
This commit is contained in:
Eric Bland 2023-09-25 11:24:32 -05:00 committed by GitHub
parent c8d9c1ef42
commit 02bb13dd24
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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.