Skip to content

Commit 35468a9

Browse files
committed
Add information about deployment() uri
1 parent 92a3ace commit 35468a9

File tree

1 file changed

+5
-10
lines changed

1 file changed

+5
-10
lines changed

articles/azure-resource-manager/templates/template-functions-deployment.md

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Template functions - deployment
33
description: Describes the functions to use in an Azure Resource Manager template (ARM template) to retrieve deployment information.
44
ms.topic: reference
55
ms.custom: devx-track-arm-template
6-
ms.date: 06/18/2025
6+
ms.date: 07/21/2025
77
---
88

99
# Deployment functions for ARM templates
@@ -107,7 +107,7 @@ When deploying a local template to a resource group: the function returns the fo
107107
}
108108
```
109109

110-
When deploying a remote template to a resource group: the function returns the following format:
110+
If the template is remote, the `templateLink` property is included in the returned object. The `templateLink` property contains the URI of the template. The format is:
111111

112112
```json
113113
{
@@ -116,14 +116,7 @@ When deploying a remote template to a resource group: the function returns the f
116116
"templateLink": {
117117
"uri": ""
118118
},
119-
"template": {
120-
"$schema": "",
121-
"contentVersion": "",
122-
"parameters": {},
123-
"variables": {},
124-
"resources": [],
125-
"outputs": {}
126-
},
119+
"template": {},
127120
"templateHash": "",
128121
"parameters": {},
129122
"mode": "",
@@ -132,6 +125,8 @@ When deploying a remote template to a resource group: the function returns the f
132125
}
133126
```
134127

128+
For more information, see [Using variables to link templates](./linked-templates.md#using-variables-to-link-templates).
129+
135130
When deploying a template spec to a resource group: the function returns the following format:
136131

137132
```json

0 commit comments

Comments
 (0)