-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtemplate.arrayToString.json
88 lines (88 loc) · 2.8 KB
/
template.arrayToString.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json",
"contentVersion": "1.0.0.0",
"parameters": {
"args": {
"type": "array"
},
"delimiter": {
"type": "string",
"defaultValue": " "
},
"contentRoot": {
"type": "string"
},
"templateId" :{
"defaultValue": "",
"type": "string"
}
},
"variables": {
"ids": [
"[concat('ArrayToString', uniqueString(string(parameters('args'))))]",
"[parameters('templateId')]"
],
"id" :"[variables('ids')[length(take(parameters('templateId'),1))]]"
},
"resources": [
{
"type": "Microsoft.Resources/deployments",
"name": "[concat(variables('id'), '0')]",
"apiVersion": "2015-01-01",
"properties": {
"templateLink": {
"contentVersion": "1.0.0.0",
"uri": "[concat(parameters('contentRoot'), '/template.stringJoin.json')]"
},
"mode": "Incremental",
"parameters": {
"stringA": {
"value": ""
},
"delimiter": {
"value": ""
},
"stringB": {
"value": ""
}
}
}
},
{
"type": "Microsoft.Resources/deployments",
"name": "[concat(variables('id'), add(copyindex(),1))]",
"apiVersion": "2015-01-01",
"copy": {
"name": "arrayJoinLoop",
"count": "[length(parameters('args'))]"
},
"properties": {
"templateLink": {
"contentVersion": "1.0.0.0",
"uri": "[concat(parameters('contentRoot'), '/template.stringJoin.json')]"
},
"mode": "Incremental",
"parameters": {
"stringA": {
"value": "[reference(concat(variables('id'), copyindex())).outputs.result.value]"
},
"delimiter": {
"value": "[parameters('delimiter')]"
},
"stringB": {
"value": "[parameters('args')[copyindex()]]"
}
}
},
"dependsOn": [
"[concat(variables('id'), copyindex())]"
]
}
],
"outputs": {
"Result": {
"type": "string",
"value": "[reference(concat(variables('id'), length(parameters('args')))).outputs.result.value]"
}
}
}