-
Notifications
You must be signed in to change notification settings - Fork 225
/
azuredeploy.json
289 lines (289 loc) · 9.98 KB
/
azuredeploy.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
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
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
{
"$schema": "http://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"resourcePrefix": {
"type": "string",
"defaultValue": "jfk",
"metadata": {
"description": "Prefix for all resources created by this template"
}
},
"hostingPlanSku": {
"type": "string",
"defaultValue": "F1",
"allowedValues": [
"F1",
"D1",
"B1",
"B2",
"B3",
"S1",
"S2",
"S3",
"P1",
"P2",
"P3",
"P4"
],
"metadata": {
"description": "The pricing tier for the App Service plan"
}
},
"searchServiceSku": {
"type": "string",
"defaultValue": "basic",
"allowedValues": [
"free",
"basic",
"standard",
"standard2",
"standard3"
],
"metadata": {
"description": "The SKU of the search service you want to create"
}
},
"searchServiceAndCognitiveServicesLocation": {
"type": "string",
"defaultValue": "West US 2",
"allowedValues": [
"South Africa North",
"East Asia",
"Southeast Asia",
"Australia East",
"Australia Southeast",
"Brazil South",
"Canada Central",
"North Europe",
"West Europe",
"France Central",
"Germany West Central",
"Central India",
"Japan East",
"Japan West",
"Korea Central",
"Norway East",
"Switzerland North",
"Switzerland West",
"UAE North",
"UK South",
"Central US",
"East US",
"East US 2",
"North Central US",
"South Central US",
"West Central US",
"West US",
"West US 2",
"West US 3"
],
"metadata": {
"description": "Location where the Azure Search service and Cognitive Services account will be deployed."
}
},
"storageAccountType": {
"type": "string",
"defaultValue": "Standard_LRS",
"allowedValues": [
"Standard_LRS",
"Standard_GRS",
"Standard_ZRS",
"Premium_LRS"
],
"metadata": {
"description": "Storage Account type"
}
},
"repoURL": {
"type": "string",
"defaultValue": "https://github.com/Microsoft/AzureSearch_JFK_Files",
"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."
}
}
},
"variables": {
"websiteName": "[concat(parameters('resourcePrefix'), '-site-', uniqueString(resourceGroup().id, deployment().name))]",
"storageAccountName": "[concat(parameters('resourcePrefix'), 'storage', uniqueString(resourceGroup().id, deployment().name))]",
"searchServiceName": "[concat(parameters('resourcePrefix'), '-search-service-', uniqueString(resourceGroup().id, deployment().name))]",
"hostingPlanName": "[concat(parameters('resourcePrefix'), '-plan-', uniqueString(resourceGroup().id, deployment().name))]",
"functionAppName": "[concat(parameters('resourcePrefix'), '-function-app-', uniqueString(resourceGroup().id, deployment().name))]",
"cognitiveServicesAccountName": "[concat(parameters('resourcePrefix'), '-cognitive-services-', uniqueString(resourceGroup().id, deployment().name))]"
},
"resources": [
{
"apiVersion": "2019-08-01",
"name": "[variables('hostingPlanName')]",
"type": "Microsoft.Web/serverfarms",
"location": "[resourceGroup().location]",
"sku": {
"name": "[parameters('hostingPlanSku')]"
},
"properties": {
"name": "[variables('hostingPlanName')]"
}
},
{
"apiVersion": "2021-04-01",
"name": "[variables('storageAccountName')]",
"type": "Microsoft.Storage/storageAccounts",
"location": "[resourceGroup().location]",
"sku": {
"name": "[parameters('storageAccountType')]"
},
"kind": "Storage"
},
{
"apiVersion": "2019-08-01",
"name": "[variables('websiteName')]",
"type": "Microsoft.Web/sites",
"location": "[resourceGroup().location]",
"dependsOn": [
"[resourceId('Microsoft.Web/serverfarms', variables('hostingPlanName'))]"
],
"properties": {
"serverFarmId": "[variables('hostingPlanName')]"
}
},
{
"apiVersion": "2020-08-01",
"name": "[variables('searchServiceName')]",
"type": "Microsoft.Search/searchServices",
"location": "[parameters('searchServiceAndCognitiveServicesLocation')]",
"sku": {
"name": "[parameters('searchServiceSku')]"
}
},
{
"name": "[variables('cognitiveServicesAccountName')]",
"type": "Microsoft.CognitiveServices/accounts",
"apiVersion": "2021-04-30",
"sku": {
"name": "S0"
},
"kind": "CognitiveServices",
"location": "[parameters('searchServiceAndCognitiveServicesLocation')]",
"properties": {}
},
{
"apiVersion": "2019-08-01",
"name": "[variables('functionAppName')]",
"type": "Microsoft.Web/sites",
"kind": "functionapp",
"location": "[resourceGroup().location]",
"dependsOn": [
"[resourceId('Microsoft.Web/serverfarms', variables('hostingPlanName'))]",
"[resourceId('Microsoft.Storage/storageAccounts', variables('storageAccountName'))]",
"[resourceId('Microsoft.Search/searchServices', variables('searchServiceName'))]"
],
"properties": {
"name": "[variables('functionAppName')]",
"serverFarmId": "[resourceId('Microsoft.Web/serverfarms', variables('hostingPlanName'))]",
"httpsOnly": true,
"siteConfig": {
"appSettings": [
{
"name": "FUNCTIONS_EXTENSION_VERSION",
"value": "~2"
},
{
"name": "AzureWebJobsStorage",
"value": "[concat('DefaultEndpointsProtocol=https;AccountName=',variables('storageAccountName'),';AccountKey=',listkeys(resourceId('Microsoft.Storage/storageAccounts', variables('storageAccountName')), '2021-04-01').keys[0].value, ';')]"
},
{
"name": "AzureWebJobsDashboard",
"value": "[concat('DefaultEndpointsProtocol=https;AccountName=',variables('storageAccountName'),';AccountKey=',listkeys(resourceId('Microsoft.Storage/storageAccounts', variables('storageAccountName')), '2021-04-01').keys[0].value, ';')]"
},
{
"name": "AzureWebJobsSecretStorageType",
"value": "Files"
},
{
"name": "BlobStorageAccountConnectionString",
"value": "[concat('DefaultEndpointsProtocol=https;AccountName=',variables('storageAccountName'),';AccountKey=',listkeys(resourceId('Microsoft.Storage/storageAccounts', variables('storageAccountName')), '2021-04-01').keys[0].value, ';')]"
},
{
"name": "SearchServiceName",
"value": "[variables('searchServiceName')]"
},
{
"name": "SearchServiceApiKey",
"value": "[listAdminKeys(resourceId('Microsoft.Search/searchServices', variables('searchServiceName')), '2020-08-01').primaryKey]"
}
],
"cors": {
"allowedOrigins": [
"[concat('https://', variables('websiteName'), '.azurewebsites.net')]"
]
},
"minTlsVersion": "1.2"
}
},
"resources": [
{
"apiVersion": "2019-08-01",
"name": "web",
"type": "sourcecontrols",
"dependsOn": [
"[resourceId('Microsoft.Web/Sites', variables('functionAppName'))]"
],
"properties": {
"RepoUrl": "[parameters('repoURL')]",
"branch": "[parameters('branch')]",
"IsManualIntegration": true
}
}
]
}
],
"outputs": {
"Search Service Name": {
"type": "string",
"value": "[variables('searchServiceName')]"
},
"Search Service Api Key": {
"type": "string",
"value": "[listAdminKeys(resourceId('Microsoft.Search/searchServices', variables('searchServiceName')), '2020-08-01').primaryKey]"
},
"Search Service Query Key": {
"type": "string",
"value": "[listQueryKeys(resourceId('Microsoft.Search/searchServices', variables('searchServiceName')), '2020-08-01').value[0].key]"
},
"Cognitive Services Account Key": {
"type": "string",
"value": "[listkeys(resourceId('Microsoft.CognitiveServices/accounts', variables('cognitiveServicesAccountName')), '2021-04-30').key1]"
},
"Blob Storage Account Connection String": {
"type": "string",
"value": "[concat('DefaultEndpointsProtocol=https;AccountName=',variables('storageAccountName'),';AccountKey=',listkeys(resourceId('Microsoft.Storage/storageAccounts', variables('storageAccountName')), '2021-04-01').keys[0].value, ';')]"
},
"Azure Web App Site Name": {
"type": "string",
"value": "[variables('websiteName')]"
},
"Azure Web App Username": {
"type": "string",
"value": "[list(concat('Microsoft.Web/sites/', variables('websiteName'), '/config/publishingcredentials'), '2019-08-01').properties.publishingUserName]"
},
"Azure Web App Password": {
"type": "string",
"value": "[list(concat('Microsoft.Web/sites/', variables('websiteName'), '/config/publishingcredentials'), '2019-08-01').properties.publishingPassword]"
},
"Azure Function Site Name": {
"type": "string",
"value": "[variables('functionAppName')]"
},
"Azure Function Host Key": {
"type": "String",
"value": "[listKeys(concat(resourceId('Microsoft.Web/sites', variables('functionAppName')), '/host/default/'), '2019-08-01').functionKeys.default]"
}
}
}