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
Copy file name to clipboardExpand all lines: learn-pr/azure/build-reusable-bicep-files-parameters/7-knowledge-check.yml
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -36,19 +36,19 @@ quiz:
36
36
explanation: Incorrect. An empty string `''` is a valid value for the `projectName` parameter.
37
37
- content: "`1`"
38
38
isCorrect: false
39
-
explanation: Incorrect. The value `'1'` is a valid value for the `projectName` parameter, since it is less than the maximum length of five characters.
39
+
explanation: Incorrect. The value `'1'` is a valid value for the `projectName` parameter, since it's less than the maximum length of five characters.
40
40
- content: "`animal`"
41
41
isCorrect: true
42
-
explanation: Correct. The value `'animal'` is not valid for the `projectName` parameter, because its length exceeds the maximum of five characters.
42
+
explanation: Correct. The value `'animal'` isn't valid for the `projectName` parameter, because its length exceeds the maximum of five characters.
43
43
- content: You want to view the value of the `apiKey` parameter after the deployment has completed. Which of these statements is true?
44
44
choices:
45
-
- content: You cannot view the value of the `apiKey` parameter for the deployment.
45
+
- content: You can't view the value of the `apiKey` parameter for the deployment.
46
46
isCorrect: true
47
-
explanation: Correct. The `apiKey` parameter has the `@secure()` decorator applied, which means that the parameter value is not available to you to view.
47
+
explanation: Correct. The `apiKey` parameter has the `@secure()` decorator applied, which means that the parameter value isn't available to you to view.
48
48
- content: You can view the value of the `apiKey` parameter for this deployment by looking at the output of the deployment command.
49
49
isCorrect: false
50
-
explanation: Incorrect. Normally, the deployment command will show you the values of each parameter. However, the `apiKey` parameter has the `@secure()` decorator applied, which means that the parameter value is not available to you to view.
50
+
explanation: Incorrect. Normally, the deployment command will show you the values of each parameter. However, the `apiKey` parameter has the `@secure()` decorator applied, which means that the parameter value isn't available to you to view.
51
51
- content: You can view the value of the `apiKey` parameter by inspecting the resource group deployments in the Azure portal.
52
52
isCorrect: false
53
-
explanation: Incorrect. Normally, the Azure portal will show you the values of each parameter for a deployment. However, the `apiKey` parameter has the `@secure()` decorator applied, which means that the parameter value is not available to you to view.
53
+
explanation: Incorrect. Normally, the Azure portal will show you the values of each parameter for a deployment. However, the `apiKey` parameter has the `@secure()` decorator applied, which means that the parameter value isn't available to you to view.
0 commit comments