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
description: Describes the functions to use in an Azure Resource Manager template (ARM template) to retrieve deployment information.
4
4
ms.topic: reference
5
5
ms.custom: devx-track-arm-template
6
-
ms.date: 06/18/2025
6
+
ms.date: 07/21/2025
7
7
---
8
8
9
9
# Deployment functions for ARM templates
@@ -107,7 +107,7 @@ When deploying a local template to a resource group: the function returns the fo
107
107
}
108
108
```
109
109
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:
111
111
112
112
```json
113
113
{
@@ -116,14 +116,7 @@ When deploying a remote template to a resource group: the function returns the f
116
116
"templateLink": {
117
117
"uri": ""
118
118
},
119
-
"template": {
120
-
"$schema": "",
121
-
"contentVersion": "",
122
-
"parameters": {},
123
-
"variables": {},
124
-
"resources": [],
125
-
"outputs": {}
126
-
},
119
+
"template": {},
127
120
"templateHash": "",
128
121
"parameters": {},
129
122
"mode": "",
@@ -132,6 +125,8 @@ When deploying a remote template to a resource group: the function returns the f
132
125
}
133
126
```
134
127
128
+
For more information, see [Using variables to link templates](./linked-templates.md#using-variables-to-link-templates).
129
+
135
130
When deploying a template spec to a resource group: the function returns the following format:
0 commit comments