-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeploy.json
More file actions
95 lines (95 loc) · 3.5 KB
/
Copy pathdeploy.json
File metadata and controls
95 lines (95 loc) · 3.5 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
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
89
90
91
92
93
94
95
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"webAppName": {
"type": "string",
"defaultValue": "[concat('webApp-', uniqueString(resourceGroup().id))]",
"metadata": {
"description": "Web app name."
},
"minLength": 2
},
"location": {
"type": "string",
"defaultValue": "[resourceGroup().location]",
"metadata": {
"description": "Location for all resources."
}
},
"sku": {
"type": "string",
"defaultValue": "F1",
"metadata": {
"description": "The SKU of App Service Plan."
}
}
},
"variables": {},
"resources": [
{
"type": "Microsoft.Resources/deployments",
"apiVersion": "2019-10-01",
"name": "serverfarmdeployment",
"properties": {
"mode": "Incremental",
"templateLink": {
"uri": "https://raw.githubusercontent.com/tracerco-peter/arm-test/master/microsoft.web-serverfarms@1.0.0.0.json",
"contentVersion": "1.0.0.0"
},
"parameters": {
"sku": { "value": "[parameters('sku')]" },
"location": { "value": "[parameters('location')]" },
"webAppName": { "value": "[parameters('webAppName')]" }
}
}
},
{
"type": "Microsoft.Resources/deployments",
"apiVersion": "2019-10-01",
"name": "webappdeployment",
"properties": {
"mode": "Incremental",
"templateLink": {
"uri": "https://raw.githubusercontent.com/tracerco-peter/arm-test/master/microsoft.web-sites.json@1.0.0.0.json",
"contentVersion": "1.0.0.0"
},
"parameters": {
"serverFarmId": { "value": "[reference('serverfarmdeployment').outputs.resourceId.value]" },
"location": { "value": "[parameters('location')]" },
"webAppName": { "value": "[parameters('webAppName')]" }
}
},
"dependsOn": [
"[resourceId('Microsoft.Resources/deployments', 'serverfarmdeployment')]"
]
},
{
"type": "Microsoft.Resources/deployments",
"apiVersion": "2019-10-01",
"name": "aideployment",
"properties": {
"mode": "Incremental",
"templateLink": {
"uri": "https://raw.githubusercontent.com/tracerco-peter/arm-test/master/microsoft.insights-components@1.0.0.0.json",
"contentVersion": "1.0.0.0"
},
"parameters": {
"name": { "value": "ai-test-123-tracerco" },
"webAppName": {"value": "[parameters('webAppName')]"}
}
}
},
{
"apiVersion": "2018-11-01",
"name": "[concat(parameters('webAppName'), '/appsettings')]",
"type": "Microsoft.Web/sites/config",
"dependsOn": [
"[resourceId('Microsoft.Resources/deployments', 'webappdeployment')]"
],
"properties": {
"ASD": "ASD"
}
}
]
}