-
Notifications
You must be signed in to change notification settings - Fork 0
/
azuredeploy.json
334 lines (334 loc) · 11 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
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"metadata": {
"_generator": {
"name": "bicep",
"version": "0.20.4.51522",
"templateHash": "17027619221182957879"
}
},
"parameters": {
"azureSearchName": {
"type": "string",
"defaultValue": "[format('cog-search-{0}', uniqueString(resourceGroup().id))]",
"minLength": 2,
"maxLength": 60,
"metadata": {
"description": "Optional. Service name must only contain lowercase letters, digits or dashes, cannot use dash as the first two or last one characters, cannot contain consecutive dashes, and is limited between 2 and 60 characters in length."
}
},
"azureSearchSKU": {
"type": "string",
"defaultValue": "standard",
"allowedValues": [
"free",
"basic",
"standard",
"standard2",
"standard3",
"storage_optimized_l1",
"storage_optimized_l2"
],
"metadata": {
"description": "Optional, defaults to standard. The pricing tier of the search service you want to create (for example, basic or standard)."
}
},
"azureSearchReplicaCount": {
"type": "int",
"defaultValue": 1,
"minValue": 1,
"maxValue": 12,
"metadata": {
"description": "Optional, defaults to 1. Replicas distribute search workloads across the service. You need at least two replicas to support high availability of query workloads (not applicable to the free tier). Must be between 1 and 12."
}
},
"azureSearchPartitionCount": {
"type": "int",
"defaultValue": 1,
"allowedValues": [
1,
2,
3,
4,
6,
12
],
"metadata": {
"description": "Optional, defaults to 1. Partitions allow for scaling of document count as well as faster indexing by sharding your index over multiple search units. Allowed values: 1, 2, 3, 4, 6, 12."
}
},
"azureSearchHostingMode": {
"type": "string",
"defaultValue": "default",
"allowedValues": [
"default",
"highDensity"
],
"metadata": {
"description": "Optional, defaults to default. Applicable only for SKUs set to standard3. You can set this property to enable a single, high density partition that allows up to 1000 indexes, which is much higher than the maximum indexes allowed for any other SKU."
}
},
"cognitiveServiceName": {
"type": "string",
"defaultValue": "[format('cognitive-service-{0}', uniqueString(resourceGroup().id))]",
"metadata": {
"description": "Optional. The name of our application. It has to be unique. Type a name followed by your resource group name. (<name>-<resourceGroupName>)"
}
},
"SQLServerName": {
"type": "string",
"defaultValue": "[format('sql-server-{0}', uniqueString(resourceGroup().id))]",
"metadata": {
"description": "Optional. The name of the SQL logical server."
}
},
"SQLDBName": {
"type": "string",
"defaultValue": "SampleDB",
"metadata": {
"description": "Optional. The name of the SQL Database."
}
},
"SQLAdministratorLogin": {
"type": "string",
"metadata": {
"description": "Required. The administrator username of the SQL logical server."
}
},
"SQLAdministratorLoginPassword": {
"type": "securestring",
"metadata": {
"description": "Required. The administrator password of the SQL logical server."
}
},
"bingSearchAPIName": {
"type": "string",
"defaultValue": "[format('bing-search-{0}', uniqueString(resourceGroup().id))]",
"metadata": {
"description": "Optional. The name of the Bing Search API service"
}
},
"cosmosDBAccountName": {
"type": "string",
"defaultValue": "[format('cosmosdb-account-{0}', uniqueString(resourceGroup().id))]",
"metadata": {
"description": "Optional. Cosmos DB account name, max length 44 characters, lowercase"
}
},
"cosmosDBDatabaseName": {
"type": "string",
"defaultValue": "[format('cosmosdb-db-{0}', uniqueString(resourceGroup().id))]",
"metadata": {
"description": "Optional. The name for the CosmosDB database"
}
},
"cosmosDBContainerName": {
"type": "string",
"defaultValue": "[format('cosmosdb-container-{0}', uniqueString(resourceGroup().id))]",
"metadata": {
"description": "Optional. The name for the CosmosDB database container"
}
},
"formRecognizerName": {
"type": "string",
"defaultValue": "[format('form-recognizer-{0}', uniqueString(resourceGroup().id))]",
"metadata": {
"description": "Optional. The name of the Form Recognizer service"
}
},
"blobStorageAccountName": {
"type": "string",
"defaultValue": "[format('blobstorage{0}', uniqueString(resourceGroup().id))]",
"metadata": {
"description": "Optional. The name of the Blob Storage account"
}
},
"location": {
"type": "string",
"defaultValue": "[resourceGroup().location]",
"metadata": {
"description": "Optional, defaults to resource group location. The location of the resources."
}
}
},
"variables": {
"cognitiveServiceSKU": "S0"
},
"resources": [
{
"type": "Microsoft.Search/searchServices",
"apiVersion": "2021-04-01-preview",
"name": "[parameters('azureSearchName')]",
"location": "[parameters('location')]",
"sku": {
"name": "[parameters('azureSearchSKU')]"
},
"properties": {
"replicaCount": "[parameters('azureSearchReplicaCount')]",
"partitionCount": "[parameters('azureSearchPartitionCount')]",
"hostingMode": "[parameters('azureSearchHostingMode')]",
"semanticSearch": "free"
}
},
{
"type": "Microsoft.CognitiveServices/accounts",
"apiVersion": "2023-05-01",
"name": "[parameters('cognitiveServiceName')]",
"location": "[parameters('location')]",
"sku": {
"name": "[variables('cognitiveServiceSKU')]"
},
"kind": "CognitiveServices",
"properties": {
"apiProperties": {
"statisticsEnabled": false
}
}
},
{
"type": "Microsoft.Sql/servers",
"apiVersion": "2022-11-01-preview",
"name": "[parameters('SQLServerName')]",
"location": "[parameters('location')]",
"properties": {
"administratorLogin": "[parameters('SQLAdministratorLogin')]",
"administratorLoginPassword": "[parameters('SQLAdministratorLoginPassword')]"
}
},
{
"type": "Microsoft.Sql/servers/databases",
"apiVersion": "2022-11-01-preview",
"name": "[format('{0}/{1}', parameters('SQLServerName'), parameters('SQLDBName'))]",
"location": "[parameters('location')]",
"sku": {
"name": "Standard",
"tier": "Standard"
},
"dependsOn": [
"[resourceId('Microsoft.Sql/servers', parameters('SQLServerName'))]"
]
},
{
"type": "Microsoft.Sql/servers/firewallRules",
"apiVersion": "2022-11-01-preview",
"name": "[format('{0}/{1}', parameters('SQLServerName'), 'AllowAllAzureIPs')]",
"properties": {
"startIpAddress": "0.0.0.0",
"endIpAddress": "255.255.255.255"
},
"dependsOn": [
"[resourceId('Microsoft.Sql/servers', parameters('SQLServerName'))]"
]
},
{
"type": "Microsoft.DocumentDB/databaseAccounts",
"apiVersion": "2023-04-15",
"name": "[parameters('cosmosDBAccountName')]",
"location": "[parameters('location')]",
"kind": "GlobalDocumentDB",
"properties": {
"databaseAccountOfferType": "Standard",
"locations": [
{
"locationName": "[parameters('location')]"
}
],
"enableFreeTier": false,
"isVirtualNetworkFilterEnabled": false,
"publicNetworkAccess": "Enabled",
"capabilities": [
{
"name": "EnableServerless"
}
]
}
},
{
"type": "Microsoft.DocumentDB/databaseAccounts/sqlDatabases",
"apiVersion": "2023-04-15",
"name": "[format('{0}/{1}', parameters('cosmosDBAccountName'), parameters('cosmosDBDatabaseName'))]",
"location": "[parameters('location')]",
"properties": {
"resource": {
"id": "[parameters('cosmosDBDatabaseName')]"
}
},
"dependsOn": [
"[resourceId('Microsoft.DocumentDB/databaseAccounts', parameters('cosmosDBAccountName'))]"
]
},
{
"type": "Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers",
"apiVersion": "2023-04-15",
"name": "[format('{0}/{1}/{2}', parameters('cosmosDBAccountName'), parameters('cosmosDBDatabaseName'), parameters('cosmosDBContainerName'))]",
"location": "[parameters('location')]",
"properties": {
"resource": {
"id": "[parameters('cosmosDBContainerName')]",
"partitionKey": {
"paths": [
"/user_id"
],
"kind": "Hash",
"version": 2
},
"defaultTtl": 1000
}
},
"dependsOn": [
"[resourceId('Microsoft.DocumentDB/databaseAccounts/sqlDatabases', parameters('cosmosDBAccountName'), parameters('cosmosDBDatabaseName'))]"
]
},
{
"type": "Microsoft.Bing/accounts",
"apiVersion": "2020-06-10",
"name": "[parameters('bingSearchAPIName')]",
"kind": "Bing.Search.v7",
"location": "global",
"sku": {
"name": "S1"
}
},
{
"type": "Microsoft.CognitiveServices/accounts",
"apiVersion": "2023-05-01",
"name": "[parameters('formRecognizerName')]",
"location": "[parameters('location')]",
"sku": {
"name": "S0"
},
"kind": "FormRecognizer"
},
{
"type": "Microsoft.Storage/storageAccounts",
"apiVersion": "2023-01-01",
"name": "[parameters('blobStorageAccountName')]",
"location": "[parameters('location')]",
"kind": "StorageV2",
"sku": {
"name": "Standard_LRS"
}
},
{
"type": "Microsoft.Storage/storageAccounts/blobServices",
"apiVersion": "2023-01-01",
"name": "[format('{0}/{1}', parameters('blobStorageAccountName'), 'default')]",
"dependsOn": [
"[resourceId('Microsoft.Storage/storageAccounts', parameters('blobStorageAccountName'))]"
]
},
{
"copy": {
"name": "blobStorageContainer",
"count": "[length(createArray('books', 'cord19', 'mixed'))]"
},
"type": "Microsoft.Storage/storageAccounts/blobServices/containers",
"apiVersion": "2023-01-01",
"name": "[format('{0}/{1}/{2}', parameters('blobStorageAccountName'), 'default', createArray('books', 'cord19', 'mixed')[copyIndex()])]",
"dependsOn": [
"[resourceId('Microsoft.Storage/storageAccounts/blobServices', parameters('blobStorageAccountName'), 'default')]"
]
}
]
}