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/26/2024
6
+
ms.date: 12/10/2024
7
7
---
8
8
9
9
# Deployment functions for ARM templates
10
10
11
11
Resource Manager provides the following functions for getting values related to the current deployment of your Azure Resource Manager template (ARM template):
12
12
13
+
*[developer](#deployer)
13
14
*[deployment](#deployment)
14
15
*[environment](#environment)
15
16
*[parameters](#parameters)
@@ -20,6 +21,52 @@ To get values from resources, resource groups, or subscriptions, see [Resource f
20
21
> [!TIP]
21
22
> We recommend [Bicep](../bicep/overview.md) because it offers the same capabilities as ARM templates and the syntax is easier to use. To learn more, see [deployment](../bicep/bicep-functions-deployment.md) functions.
22
23
24
+
## deployer
25
+
26
+
`deployer()`
27
+
28
+
Returns the information about the current deployment principal.
29
+
30
+
In Bicep, use the [deployer](../bicep/bicep-functions-deployment.md#deployer) function.
31
+
32
+
### Return value
33
+
34
+
This function returns the information about the current deployment principal, including tenant ID and object ID.
35
+
36
+
```json
37
+
{
38
+
"objectId": "",
39
+
"tenantId": ""
40
+
}
41
+
```
42
+
43
+
### Example
44
+
45
+
The following example returns the deployer object.
Copy file name to clipboardExpand all lines: articles/azure-resource-manager/templates/template-functions.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ title: Template functions
3
3
description: Describes the functions to use in an Azure Resource Manager template (ARM template) to retrieve values, work with strings and numerics, and retrieve deployment information.
4
4
ms.topic: reference
5
5
ms.custom: devx-track-arm-template
6
-
ms.date: 05/10/2024
6
+
ms.date: 12/10/2024
7
7
---
8
8
9
9
# ARM template functions
@@ -122,6 +122,7 @@ For Bicep files, use the [date](../bicep/bicep-functions-date.md) functions.
122
122
123
123
Resource Manager provides the following functions for getting values from sections of the template and values related to the deployment:
Copy file name to clipboardExpand all lines: articles/cloud-services/cloud-services-guestos-msrc-releases.md
+56-1Lines changed: 56 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,14 +7,69 @@ author: jejackson
7
7
ms.assetid: d0a272a9-ed01-4f4c-a0b3-bd5e841bdd77
8
8
ms.service: azure-cloud-services-classic
9
9
ms.topic: article
10
-
ms.date: 09/03/2024
10
+
ms.date: 12/11/2024
11
11
ms.author: jejackson
12
12
ms.custom: compute-evergreen
13
13
---
14
14
15
15
# Azure Guest OS
16
16
The following tables show the Microsoft Security Response Center (MSRC) updates applied to the Azure Guest OS. Search this article to determine if a particular update applies to your Guest OS. Updates always carry forward for the particular [family][family-explain] they were introduced in.
17
17
18
+
## October 2024 Guest OS
19
+
| Product Category | Parent KB Article | Vulnerability Description | Guest OS | Date First Introduced |
0 commit comments