-
Notifications
You must be signed in to change notification settings - Fork 0
/
blank-placeholder.json
34 lines (34 loc) · 1000 Bytes
/
blank-placeholder.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
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"deployme": {
"type": "string",
"allowedValues": [
"empty",
"something_else"
]
}
},
"variables": {
"templateUri": {
"empty": "https://raw.githubusercontent.com/4c74356b41/armotron/master/blank.json",
"something_else": ""
}
},
"resources": [
{
"name": "[parameters('deployme')]",
"type": "Microsoft.Resources/deployments",
"apiVersion": "2015-01-01",
"properties": {
"mode": "Incremental",
"templateLink": {
"uri": "[variables('templateUri')[parameters('deployme')]]",
"contentVersion": "1.0.0.0"
},
"parameters": {}
}
}
]
}