forked from rjmax/ArmExamples
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathNestedTemplate.json
More file actions
24 lines (24 loc) · 796 Bytes
/
NestedTemplate.json
File metadata and controls
24 lines (24 loc) · 796 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"StorageAccountName": {
"type": "String"
}
},
"variables": {"templatelink":"https://raw.githubusercontent.com/rjmax/ArmExamples/master/newStorageAccount.json"},
"resources": [
{
"apiVersion": "2015-01-01",
"name": "nestedTemplate",
"type": "Microsoft.Resources/deployments",
"properties": {
"mode": "incremental",
"templateLink": {"uri":"[variables('templatelink')]","contentVersion":"1.0.0.0"},
"parameters": {
"StorageAccountName":{"value":"[parameters('StorageAccountName')]"}
}
}
}
]
}