Skip to content

Commit a227f1b

Browse files
authored
Apply suggestions from code review
1 parent b475961 commit a227f1b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/azure-resource-manager/troubleshooting/quickstart-troubleshoot-arm-deployment.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Copy the following template and save it locally. You'll use this file to trouble
3636
{
3737
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
3838
"contentVersion": "1.0.0.0",
39-
"parameters": {
39+
"parameterss": {
4040
"storageAccountType": {
4141
"type": "string",
4242
"defaultValue": "Standard_LRS",
@@ -86,9 +86,9 @@ Copy the following template and save it locally. You'll use this file to trouble
8686

8787
## Fix validation error
8888

89-
Open the file in Visual Studio Code. The wavy line under `parameters:` indicates an error. To see the validation error, hover over the error.
89+
Open the file in Visual Studio Code. The wavy line under `parameterss:` indicates an error. To see the validation error, hover over the error.
9090

91-
:::image type="content" source="media/quickstart-troubleshoot-arm-deployment/validation-error.png" alt-text="Screenshot of Visual Studio Code highlighting a template validation error with a red wavy line under the misspelled 'parameters:' in the code.":::
91+
:::image type="content" source="media/quickstart-troubleshoot-arm-deployment/validation-error.png" alt-text="Screenshot of Visual Studio Code highlighting a template validation error with a red wavy line under the misspelled 'parameterss:' in the code.":::
9292

9393
You'll notice that `variables` and `resources` have errors for _undefined parameter reference_. To display the template's validation errors, select **View** > **Problems**.
9494

@@ -97,10 +97,10 @@ You'll notice that `variables` and `resources` have errors for _undefined parame
9797
All the errors are caused by the incorrect spelling of an element name.
9898

9999
```json
100-
"parameters": {
100+
"parameterss": {
101101
```
102102

103-
The error message states _Template validation failed: Could not find member 'parameters' on object of type 'Template'. Path 'parameters', line 4, position 16_.
103+
The error message states _Template validation failed: Could not find member 'parameterss' on object of type 'Template'. Path 'parameterss', line 4, position 16_.
104104

105105
The ARM template syntax for [parameters](../templates/syntax.md#parameters) shows that `parameters` is the correct element name.
106106

0 commit comments

Comments
 (0)