Skip to content

Commit 9e4d87d

Browse files
committed
update JSON template function deployer()
1 parent 6c89855 commit 9e4d87d

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

articles/azure-resource-manager/bicep/toc.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ items:
331331
displayName: dateTimeAdd,dateTimeFromEpoch,dateTimeToEpoch,utcNow
332332
href: bicep-functions-date.md
333333
- name: Deployment functions
334-
displayName: deployment,environment
334+
displayName: deployment,environment, deployer
335335
href: bicep-functions-deployment.md
336336
- name: File functions
337337
displayName: loadFileAsBase64,loadJsonContent,loadYamlContent,loadTextContent
@@ -340,7 +340,7 @@ items:
340340
displayName: fail
341341
href: bicep-functions-flow-control.md
342342
- name: Lambda functions
343-
displayName: filter,map,reduce,sort,toObject
343+
displayName: filter,map,reduce,sort,toObject,groupBy,mapValue
344344
href: bicep-functions-lambda.md
345345
- name: Logical functions
346346
displayName: bool
@@ -349,13 +349,13 @@ items:
349349
displayName: int,max,min
350350
href: bicep-functions-numeric.md
351351
- name: Object functions
352-
displayName: contains,empty,intersection,items,json,length,union
352+
displayName: contains,empty,intersection,items,json,length,objectKeys,shallowMerge,union
353353
href: bicep-functions-object.md
354354
- name: Parameters file functions
355355
displayName: getSecret,readEnvironmentVariable
356356
href: bicep-functions-parameters-file.md
357357
- name: Resource functions
358-
displayName: extensionResourceId,getSecret,list,pickZones,providers,reference,resourceId,subscriptionResourceId,managementGroupResourceId,tenantResourceId
358+
displayName: extensionResourceId,getSecret,listAccountSas,ListKeys,listSecrets,list,managementGroupResourceId,pickZones,providers,reference,resourceId,subscriptionResourceId,tenantResourceId,toLogicalZone,toPhysicalZone
359359
href: bicep-functions-resource.md
360360
- name: Scope functions
361361
displayName: managementGroup,resourceGroup,subscription,tenant

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

Lines changed: 5 additions & 3 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: 02/12/2025
6+
ms.date: 06/18/2025
77
---
88

99
# Deployment functions for ARM templates
@@ -36,7 +36,8 @@ This function returns the information about the current deployment principal, in
3636
```json
3737
{
3838
"objectId": "",
39-
"tenantId": ""
39+
"tenantId": "",
40+
"userPrincipalName": ""
4041
}
4142
```
4243

@@ -63,7 +64,8 @@ The preceding example returns the following object:
6364
```json
6465
{
6566
"objectId":"aaaaaaaa-0000-1111-2222-bbbbbbbbbbbb",
66-
"tenantId":"aaaa0a0a-bb1b-cc2c-dd3d-eeeeee4e4e4e"
67+
"tenantId":"aaaa0a0a-bb1b-cc2c-dd3d-eeeeee4e4e4e",
68+
"userPrincipalName":"[email protected]"
6769
}
6870
```
6971

0 commit comments

Comments
 (0)