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: articles/azure-resource-manager/templates/template-tutorial-add-outputs.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
2
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.
4
4
author: mumian
5
5
ms.date: 08/17/2022
6
6
ms.topic: tutorial
@@ -10,25 +10,25 @@ ms.custom:
10
10
11
11
# Tutorial: Add outputs to your ARM template
12
12
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.
14
14
15
15
## Prerequisites
16
16
17
17
We recommend that you complete the [tutorial about variables](template-tutorial-add-variables.md), but it's not required.
18
18
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).
20
20
21
21
## Review template
22
22
23
23
At the end of the previous tutorial, your template had the following JSON:
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.
28
28
29
29
## Add outputs
30
30
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.
32
32
33
33
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.
0 commit comments