You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -86,9 +86,9 @@ Copy the following template and save it locally. You'll use this file to trouble
86
86
87
87
## Fix validation error
88
88
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.
90
90
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.":::
92
92
93
93
You'll notice that `variables` and `resources` have errors for _undefined parameter reference_. To display the template's validation errors, select **View** > **Problems**.
94
94
@@ -97,10 +97,10 @@ You'll notice that `variables` and `resources` have errors for _undefined parame
97
97
All the errors are caused by the incorrect spelling of an element name.
98
98
99
99
```json
100
-
"parameters": {
100
+
"parameterss": {
101
101
```
102
102
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_.
104
104
105
105
The ARM template syntax for [parameters](../templates/syntax.md#parameters) shows that `parameters` is the correct element name.
0 commit comments