forked from Azure-Samples/azure-search-knowledge-mining
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azuredeploy.json
229 lines (229 loc) · 8.5 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
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"resourcePrefix": {
"type": "string",
"metadata": {
"description": "provide a 2-13 character prefix for all resources."
}
},
"storageAccountType": {
"type": "string",
"defaultValue": "Standard_LRS",
"allowedValues": [
"Standard_LRS",
"Standard_GRS",
"Standard_ZRS",
"Premium_LRS"
],
"metadata": {
"description": "Storage Account type"
}
},
"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. E.g. free or standard"
}
},
"location": {
"type": "string",
"defaultValue": "South Central US",
"allowedValues": [
"East Asia",
"Southeast Asia",
"Australia East",
"Brazil South",
"Canada Central",
"North Europe",
"West Europe",
"Central India",
"UK South",
"East US",
"East US 2",
"Central US",
"North Central US",
"South Central US",
"West Central US",
"West US",
"West US 2",
"Japan East",
"Japan West",
"Korea Central",
"France Central"
],
"metadata": {
"description": "Location where the Azure Search service and Cognitive Services account will be deployed."
}
}
},
"variables": {
"hostingPlanName": "[concat(parameters('resourcePrefix'), '-plan')]",
"storageAccountName": "[concat(parameters('resourcePrefix'), 'str')]",
"websiteName": "[concat(parameters('resourcePrefix'), '-site')]",
"appInsightsName": "[concat(parameters('resourcePrefix'), '-app-insights')]",
"searchServiceName": "[concat(parameters('resourcePrefix'), '-search-service')]",
"cognitiveServicesAccountName": "[concat(parameters('resourcePrefix'), '-cognitive-services')]",
"functionAppName":"[concat(parameters('resourcePrefix'), '-function-app')]",
"storageAccountId":"[concat(parameters('resourcePrefix'))]"
},
"resources": [
{
"apiVersion": "2016-09-01",
"name": "[variables('hostingPlanName')]",
"type": "Microsoft.Web/serverfarms",
"location": "[parameters('location')]",
"sku": {
"name": "[parameters('hostingPlanSku')]"
},
"properties": {
"name": "[variables('hostingPlanName')]"
}
},
{
"name": "[variables('storageAccountName')]",
"type": "Microsoft.Storage/storageAccounts",
"apiVersion": "2018-07-01",
"location": "[parameters('location')]",
"kind": "StorageV2",
"sku": {
"name": "[parameters('storageAccountType')]",
"tier": "Standard"
}
},
{
"apiVersion": "2016-08-01",
"name": "[variables('websiteName')]",
"type": "Microsoft.Web/sites",
"location": "[parameters('location')]",
"dependsOn": [
"[resourceId('Microsoft.Web/serverfarms', variables('hostingPlanName'))]"
],
"properties": {
"serverFarmId": "[variables('hostingPlanName')]"
}
},
{
"type": "microsoft.insights/components",
"apiVersion": "2015-05-01",
"name": "[variables('appInsightsName')]",
"location": "[parameters('location')]",
"tags": {
"applicationType": "web",
"applicationName": "[variables('websiteName')]"
},
"kind": "web",
"properties": {
"Application_Type": "web"
}
},
{
"apiVersion": "2015-08-19",
"name": "[variables('searchServiceName')]",
"type": "Microsoft.Search/searchServices",
"location": "[parameters('location')]",
"sku": {
"name": "[parameters('searchServiceSku')]"
}
},
{
"name": "[variables('cognitiveServicesAccountName')]",
"type": "Microsoft.CognitiveServices/accounts",
"apiVersion": "2017-04-18",
"sku": {
"name": "S0"
},
"kind": "CognitiveServices",
"location": "[toLower(replace(parameters('location'),' ', ''))]",
"properties": {}
},
{
"apiVersion": "2016-03-01",
"type": "Microsoft.Web/sites",
"name": "[variables('functionAppName')]",
"location": "[parameters('location')]",
"kind": "functionapp",
"dependsOn": [
"[resourceId('Microsoft.Storage/storageAccounts', variables('storageAccountName'))]",
"[resourceId('Microsoft.Insights/components', variables('appInsightsName'))]"
],
"properties": {
"siteConfig": {
"appSettings": [
{
"name": "AzureWebJobsStorage",
"value": "[concat('DefaultEndpointsProtocol=https;AccountName=',variables('storageAccountName'),';AccountKey=',listkeys(resourceId('Microsoft.Storage/storageAccounts', variables('storageAccountName')), '2015-05-01-preview').key1, ';')]"
},
{
"name": "APPINSIGHTS_INSTRUMENTATIONKEY",
"value": "[reference(resourceId('microsoft.insights/components/', variables('appInsightsName')), '2015-05-01').InstrumentationKey]"
},
{
"name": "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING",
"value": "[concat('DefaultEndpointsProtocol=https;AccountName=',variables('storageAccountName'),';AccountKey=',listkeys(resourceId('Microsoft.Storage/storageAccounts', variables('storageAccountName')), '2015-05-01-preview').key1, ';')]"
},
{
"name": "WEBSITE_CONTENTSHARE",
"value": "[toLower(variables('functionAppName'))]"
},
{
"name": "FUNCTIONS_WORKER_RUNTIME",
"value": "node"
},
{
"name": "WEBSITE_NODE_DEFAULT_VERSION",
"value": "10.14.1"
},
{
"name": "FUNCTIONS_EXTENSION_VERSION",
"value": "~2"
}
]
}
}
},
{
"apiVersion": "2018-02-01",
"name": "pid-205d0e47-324f-5b9e-8dde-f9fc4a92c091",
"type": "Microsoft.Resources/deployments",
"properties": {
"mode": "Incremental",
"template": {
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"resources": []
}
}
}
]
}