Skip to content

Commit 06837d8

Browse files
committed
first round of edits for add outputs template tutorial
1 parent 40a016e commit 06837d8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/azure-resource-manager/templates/template-tutorial-add-outputs.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.custom:
1010

1111
# Tutorial: Add outputs to your ARM template
1212

13-
In this tutorial, you learn how to return a value from your Azure Resource Manager template (ARM template). You use output parameters when you need a value for a resource you deploy. This tutorial takes **7 minutes** to complete.
13+
In this tutorial, you learn how to return a value from your Azure Resource Manager template (ARM template). You use an output parameter when you need a value for a resource you deploy. This tutorial takes **7 minutes** to complete.
1414

1515
## Prerequisites
1616

@@ -38,7 +38,7 @@ There are some important items to note about the output value you added.
3838

3939
The type of returned value is set to `object`, which means it returns a JSON object.
4040

41-
It uses the [reference](template-functions-resource.md#reference) function to get the runtime state of the storage account. To get the runtime state of a resource, you pass in the name or ID of a resource. In this case, you use the same variable you used to create the name of the storage account.
41+
It uses the [reference](template-functions-resource.md#reference) function to get the runtime state of the storage account. To get the runtime state of a resource, pass the name or ID of a resource. In this case, you use the same variable you used to create the name of the storage account.
4242

4343
Finally, it returns the `primaryEndpoints` property from the storage account.
4444

@@ -91,7 +91,7 @@ In the output for the deployment command, you see an object similar to the follo
9191
9292
## Review your work
9393

94-
You've done a lot in the last six tutorials. Let's take a moment to review what you have done. You created a template with parameters that are easy to provide. The template is reusable in different environments because it allows for customization and dynamically creates needed values. It also returns information about the storage account that you could use in your script.
94+
You've done a lot in the last six tutorials. Let's take a moment to review what you've done. You created a template with parameters that are easy to provide. The template is reusable in different environments because it allows for customization and dynamically creates needed values. It also returns information about the storage account that you could use in your script.
9595

9696
Now, let's look at the resource group and deployment history.
9797

0 commit comments

Comments
 (0)