This repository was archived by the owner on Dec 13, 2025. It is now read-only.
forked from jmservera/node-red-azure-webapp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebapp.json
More file actions
247 lines (246 loc) · 6.88 KB
/
webapp.json
File metadata and controls
247 lines (246 loc) · 6.88 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
{
"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"siteName": {
"type": "string",
"defaultValue": "BobbNR",
"metadata": {
"description": "The name of the web app that you wish to create."
}
},
"sku": {
"type": "string",
"allowedValues": [
"F1",
"D1",
"B1",
"B2",
"B3",
"S1",
"S2",
"S3",
"P1",
"P2",
"P3",
"P4"
],
"defaultValue": "B1",
"metadata": {
"description": "The pricing tier for the hosting plan. For any tier >=B1 Always on will be activated."
}
},
"workerSize": {
"type": "string",
"allowedValues": [
"0",
"1",
"2"
],
"defaultValue": "0",
"metadata": {
"description": "The instance size of the hosting plan (small, medium, or large)."
}
},
"repoURL": {
"type": "string",
"defaultValue": "https://github.com/JFDI-Consulting/node-red-azure-webapp.git",
"metadata": {
"description": "The URL for the GitHub repository that contains the project to deploy."
}
},
"branch": {
"type": "string",
"defaultValue": "master",
"metadata": {
"description": "The branch of the GitHub repository to use."
}
},
"nodeJsVersion":{
"type": "string",
"defaultValue": "10.15.2",
"metadata": {
"description": "Nodejs version, make sure that the App Service supports the version you set here."
}
},
"npmToken":{
"type": "string",
"defaultValue": "9e8ce17b-ad34-4ffd-965d-74dcd5d313f1",
"metadata": {
"description": "NPM Token for private scoped access to JFDI npm packages."
}
},
"mqttBroker":{
"type": "string",
"defaultValue": "m20.cloudmqtt.com",
"metadata": {
"description": "MQTT broker name to talk to."
}
},
"mqttPort":{
"type": "string",
"defaultValue": "25684",
"metadata": {
"description": "The port on which to talk to MQTT broker."
}
},
"apiPath":{
"type": "string",
"defaultValue": "/api/BobbAPI/2.0",
"metadata": {
"description": "URL path for API calls."
}
},
"apiServer":{
"type": "string",
"defaultValue": "engine.bobb.ai",
"metadata": {
"description": "Server name for API calls."
}
},
"adminAuthToken":{
"type": "string",
"defaultValue": "2c1ae665-0d9e-4a71-86b5-cc96d014fdfc.c35887ba-0a2f-4245-ad83-2f4461974d97",
"metadata": {
"description": "Perpetually valid API key to use for API calls."
}
},
"azureConnStr":{
"type": "string",
"defaultValue": "DefaultEndpointsProtocol=https;AccountName=YOUR_STORAGE_ACCOUNT_NAME;AccountKey=***REMOVED_KEY***;EndpointSuffix=core.windows.net",
"metadata": {
"description": "The connection string for the Azure storage account where data should live."
}
},
"secretKey":{
"type": "string",
"defaultValue": "Jsq8HOGfDzuK0b6ymZWvd7cWZhzC5BXkhE6CgDooTQnFLAFmzXbKi9h3qyBxjl1B",
"metadata": {
"description": "The private key to use for JFDI auth/auth ops."
}
}
},
"variables": {
"alwaysOnValue": {
"F1": "false",
"D1": "false",
"B1": "true",
"B2": "true",
"B3": "true",
"S1": "true",
"S2": "true",
"S3": "true",
"P1": "true",
"P2": "true",
"P3": "true",
"P4": "true"
},
"hostingPlanName": "[concat(parameters('siteName'),'Hosting')]"
},
"resources": [
{
"apiVersion": "2015-08-01",
"name": "[variables('hostingPlanName')]",
"tags": {
"displayName": "hosting"
},
"type": "Microsoft.Web/serverfarms",
"location": "[resourceGroup().location]",
"sku": {
"name": "[parameters('sku')]",
"capacity": "[parameters('workerSize')]"
},
"properties": {
"name": "[variables('hostingPlanName')]"
}
},
{
"apiVersion": "2015-08-01",
"name": "[parameters('siteName')]",
"tags": {
"displayName": "site"
},
"type": "Microsoft.Web/sites",
"location": "[resourceGroup().location]",
"dependsOn": [
"[resourceId('Microsoft.Web/serverfarms', variables('hostingPlanName'))]"
],
"properties": {
"serverFarmId": "[variables('hostingPlanName')]",
"siteConfig": {
"webSocketsEnabled": true,
"alwaysOn": "[variables('alwaysOnValue')[parameters('sku')]]",
"phpVersion":""
}
},
"resources": [
{
"apiVersion": "2015-08-01",
"name": "web",
"type": "sourcecontrols",
"dependsOn": [
"[resourceId('Microsoft.Web/Sites', parameters('siteName'))]"
],
"properties": {
"RepoUrl": "[parameters('repoURL')]",
"branch": "[parameters('branch')]",
"IsManualIntegration": true
}
},
{
"name": "appsettings",
"type": "config",
"apiVersion": "2015-08-01",
"dependsOn": [
"[resourceId('Microsoft.Web/Sites/', parameters('siteName'))]",
"[concat('Microsoft.Web/Sites/', parameters('siteName'),'/sourcecontrols/web')]"
],
"tags": {
"displayName": "AppSettings"
},
"properties": {
"WEBSITE_NODE_DEFAULT_VERSION": "[parameters('nodeJsVersion')]",
"NPM_TOKEN": "[parameters('npmToken')]",
"secretKey": "[parameters('secretKey')]",
"adminAuthToken": "[parameters('adminAuthToken')]",
"azureConnStr": "[parameters('azureConnStr')]",
"CANONICAL_API_PATH": "[parameters('apiPath')]",
"CANONICAL_API_SERVER": "[parameters('apiServer')]",
"MQTT_BROKER_ADDRESS": "[parameters('mqttBroker')]",
"MQTT_BROKER_PORT": "[parameters('mqttPort')]"
}
},
{
"apiVersion": "2015-08-01",
"name": "logs",
"type": "config",
"dependsOn": [
"[resourceId('Microsoft.Web/Sites', parameters('siteName'))]"
],
"tags": {
"displayName": "Logs"
},
"properties": {
"applicationLogs": {
"fileSystem": {
"level": "Verbose"
}
},
"httpLogs": {
"fileSystem": {
"retentionInMb": 40,
"enabled": false
}
},
"failedRequestsTracing": {
"enabled": false
},
"detailedErrorMessages": {
"enabled": false
}
}
}
]
}
]
}