forked from 4lowtherabbit/AppService.ELX.Spec.Perf.2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathELX.Spec.Perf.2.json
More file actions
57 lines (57 loc) · 1.68 KB
/
ELX.Spec.Perf.2.json
File metadata and controls
57 lines (57 loc) · 1.68 KB
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
{
"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"variables": {
"hostingPlanName": "[replace(resourceGroup().name,'.','')]",
"siteName": "[concat(toLower(variables('hostingPlanName')), uniqueString(resourceGroup().id))]",
"sku": "s1",
"workerSize": "0",
"repoURL": "https://github.com/4lowtherabbit/AppService.ELX.Spec.Perf.2.git",
"branch": "master"
},
"resources": [
{
"apiVersion": "2015-08-01",
"name": "[variables('hostingPlanName')]",
"type": "Microsoft.Web/serverfarms",
"location": "[resourceGroup().location]",
"sku": {
"name": "[variables('sku')]",
"capacity": "[variables('workerSize')]"
},
"properties": {
"name": "[variables('hostingPlanName')]"
}
},
{
"apiVersion": "2015-08-01",
"name": "[variables('siteName')]",
"type": "Microsoft.Web/sites",
"location": "[resourceGroup().location]",
"dependsOn": [
"[resourceId('Microsoft.Web/serverfarms', variables('hostingPlanName'))]"
],
"properties": {
"serverFarmId": "[variables('hostingPlanName')]",
"siteConfig": {
"alwaysOn": true
}
},
"resources": [
{
"apiVersion": "2015-08-01",
"name": "web",
"type": "sourcecontrols",
"dependsOn": [
"[resourceId('Microsoft.Web/Sites', variables('siteName'))]"
],
"properties": {
"RepoUrl": "[variables('repoURL')]",
"branch": "[variables('branch')]",
"IsManualIntegration": true
}
}
]
}
]
}