- Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathuniqueStringSample.json
More file actions
Latest commit
21 lines (21 loc) · 625 Bytes
/
Copy pathuniqueStringSample.json
File metadata and controls
21 lines (21 loc) · 625 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {},
"variables": {},
"resources": [],
"outputs": {
"uniqueStringPerSubscription": {
"value": "[uniqueString(subscription().subscriptionId)]",
"type": "string"
},
"uniqueStringPerResourceGroup": {
"value": "[uniqueString(resourceGroup().id)]",
"type": "string"
},
"uniqueStringPerDeployment": {
"value": "[uniqueString(resourceGroup().id, deployment().name)]",
"type" : "string"
}
}
}