Skip to content

Commit 500432b

Browse files
authored
Fixed Unique Id and reordered concatenation. (microsoft#74)
1 parent 41250b4 commit 500432b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

infrastructure/global-resources/azuredeploy.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,19 @@
44
"parameters": {
55
"database_account_name": {
66
"type": "string",
7-
"defaultValue": "[concat(uniqueString(resourceGroup().id), 'cosmos-instance')]"
7+
"defaultValue": "[concat('cosmos-instance-', uniqueString(resourceGroup().id))]"
88
},
99
"database-name": {
1010
"type": "string",
1111
"defaultValue": "data"
1212
},
1313
"container_registry_name": {
1414
"type": "string",
15-
"defaultValue": "acrImages"
15+
"defaultValue": "[concat('acrimages', uniqueString(resourceGroup().id))]"
1616
},
1717
"traffic_manager_profiles_name": {
1818
"type": "string",
19-
"defaultValue": "tm-profiles"
19+
"defaultValue": "[concat('tm-profiles-', uniqueString(resourceGroup().id))]"
2020
}
2121
},
2222
"resources": [

0 commit comments

Comments
 (0)