Skip to content

Commit 5340552

Browse files
committed
second round of edits for add outputs template tutorial
1 parent 06837d8 commit 5340552

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Tutorial - add outputs to template
3-
description: Add output parameters to your Azure Resource Manager template (ARM template) to simplify the syntax.
3+
description: Add outputs to your Azure Resource Manager template (ARM template) to simplify the syntax.
44
author: mumian
55
ms.date: 08/17/2022
66
ms.topic: tutorial
@@ -10,25 +10,25 @@ 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 an output parameter 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 outputs when you need a value for a resource you deploy. This tutorial takes **7 minutes** to complete.
1414

1515
## Prerequisites
1616

1717
We recommend that you complete the [tutorial about variables](template-tutorial-add-variables.md), but it's not required.
1818

19-
You need to have Azure Visual Studio Code with the Resource Manager Tools extension, and either Azure PowerShell or Azure Command-Line Interface (CLI). For more information, see [template tools](template-tutorial-create-first-template.md#get-tools).
19+
You need to have Visual Studio Code with the Resource Manager Tools extension, and either Azure PowerShell or Azure Command-Line Interface (CLI). For more information, see [template tools](template-tutorial-create-first-template.md#get-tools).
2020

2121
## Review template
2222

2323
At the end of the previous tutorial, your template had the following JSON:
2424

25-
:::code language="json" source="~/resourcemanager-templates/get-started-with-templates/add-location/azuredeploy.json":::
25+
:::code language="json" source="~/resourcemanager-templates/get-started-with-templates/add-variable/azuredeploy.json":::
2626

2727
It deploys a storage account, but it doesn't return any information about it. You might need to capture properties from your new resource so they're available later for reference.
2828

2929
## Add outputs
3030

31-
You can use output parameters to return values from the template. It might be helpful, for example, to get the endpoints for your new storage account.
31+
You can use outputs to return values from the template. It might be helpful, for example, to get the endpoints for your new storage account.
3232

3333
The following example highlights the change to your template to add an output value. Copy the whole file and replace your template with its contents.
3434

0 commit comments

Comments
 (0)