-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathazuredeploy_Connector_TeamCymruScout_AzureFunction.json
355 lines (355 loc) · 15.1 KB
/
azuredeploy_Connector_TeamCymruScout_AzureFunction.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
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
{
"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"FunctionName": {
"defaultValue": "CymruScout",
"minLength": 1,
"maxLength": 11,
"type": "string"
},
"TeamCymruScoutBaseURL": {
"type": "string",
"metadata": {
"description": "Base URL starting with \"https://\" followed by hostname (Ex: https://scout.cymru.com)."
}
},
"AuthenticationType": {
"type": "string",
"defaultValue": "Basic Auth",
"metadata": {
"description": "Please select Authentication Type for Team Cymru Scout APIs. By default it is set to Basic Auth."
},
"allowedValues": [
"API Key",
"Basic Auth"
]
},
"Username": {
"type": "string",
"defaultValue": "",
"metadata": {
"description": "Enter the username for Team Cymru Scout account. Required if Authentication Type is Basic Auth"
}
},
"Password": {
"type": "securestring",
"defaultValue": "",
"metadata": {
"description": "Enter the password for Team Cymru Scout account. Required if Authentication Type is Basic Auth"
}
},
"APIKey": {
"type": "securestring",
"defaultValue": "",
"metadata": {
"description": "Enter the API Key for Team Cymru Scout account. Required if Authentication Type is API Key"
}
},
"IPValues": {
"type": "string",
"defaultValue": "",
"metadata": {
"description": "Enter comma separated ip values for which data should be collected. e.g. 1.2.3.4,10.20.30.40,2.4.3.6"
}
},
"DomainValues": {
"type": "string",
"defaultValue": "",
"metadata": {
"description": "Enter comma separated domain values for which data should be collected. e.g. abc.com,xyz.com,def.ai"
}
},
"APIType": {
"type": "string",
"defaultValue": "Foundation",
"metadata": {
"description": "Select the type of API to collect data for IP. By default it is set to Foundation."
},
"allowedValues": [
"Foundation",
"Details"
]
},
"AzureClientId": {
"type": "string",
"minLength": 1,
"metadata": {
"description": "Enter Azure Client Id that you have created during app registration"
}
},
"AzureClientSecret": {
"type": "securestring",
"minLength": 1,
"metadata": {
"description": "Enter Azure Client Secret that you have created during creating the client secret"
}
},
"TenantId":{
"type": "string",
"minLength": 1,
"metadata": {
"description": "Enter Tenant Id of your Microsoft Entra Id"
}
},
"WorkspaceID": {
"type": "string",
"minLength": 1,
"metadata": {
"description": "Enter Workspace ID of Log Analytics Workspace"
}
},
"WorkspaceKey": {
"type": "securestring",
"minLength": 1,
"metadata": {
"description": "Enter Primary Key of Log Analytics Workspace"
}
},
"IPTableName": {
"type": "string",
"defaultValue": "Cymru_Scout_IP_Data",
"minLength": 1,
"metadata": {
"description": "Please do not keep this field as empty else you will get validation error"
}
},
"DomainTableName": {
"type": "string",
"defaultValue": "Cymru_Scout_Domain_Data",
"minLength": 1,
"metadata": {
"description": "Please do not keep this field as empty else you will get validation error"
}
},
"AccountUsageTableName": {
"type": "string",
"defaultValue": "Cymru_Scout_Account_Usage_Data",
"minLength": 1,
"metadata": {
"description": "Please do not keep this field as empty else you will get validation error"
}
},
"Schedule": {
"type": "string",
"defaultValue": "0 0 0 * * *",
"metadata": {
"description": "Enter a valid Quartz cron-expression. The default value is every day at midnight(00:00) for ip and domain data collection."
}
},
"AccountUsageSchedule": {
"type": "string",
"defaultValue": "0 0 * * * *",
"metadata": {
"description": "Enter a valid Quartz cron-expression. The default value is every hour for Account usage."
}
},
"LogLevel": {
"type": "string",
"defaultValue": "INFO",
"metadata": {
"description": "Please select log level or log severity value. By default it is set to INFO."
},
"allowedValues": [
"DEBUG",
"INFO",
"ERROR"
]
},
"AppInsightsWorkspaceResourceID": {
"type": "string",
"metadata": {
"description": "Migrate Classic Application Insights to Log Analytic Workspace which is retiring by 29 Febraury 2024. Use 'Log Analytic Workspace-->Properties' blade having 'Resource ID' property value. This is a fully qualified resourceId which is in format '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}'"
}
}
},
"variables": {
"FunctionName": "[concat(toLower(parameters('FunctionName')), uniqueString(resourceGroup().id))]",
"StorageSuffix": "[environment().suffixes.storage]",
"LogAnaltyicsUri": "[replace(environment().portal, 'https://portal', concat('https://', toLower(parameters('WorkspaceID')), '.ods.opinsights'))]"
},
"resources": [
{
"type": "Microsoft.Insights/components",
"apiVersion": "2020-02-02",
"name": "[variables('FunctionName')]",
"location": "[resourceGroup().location]",
"kind": "web",
"properties": {
"Application_Type": "web",
"ApplicationId": "[variables('FunctionName')]",
"WorkspaceResourceId": "[parameters('AppInsightsWorkspaceResourceID')]"
}
},
{
"type": "Microsoft.Storage/storageAccounts",
"apiVersion": "2019-06-01",
"name": "[tolower(variables('FunctionName'))]",
"location": "[resourceGroup().location]",
"sku": {
"name": "Standard_LRS",
"tier": "Standard"
},
"kind": "StorageV2",
"properties": {
"networkAcls": {
"bypass": "AzureServices",
"virtualNetworkRules": [],
"ipRules": [],
"defaultAction": "Allow"
},
"supportsHttpsTrafficOnly": true,
"allowBlobPublicAccess": false,
"encryption": {
"requireInfrastructureEncryption": true,
"services": {
"file": {
"keyType": "Account",
"enabled": true
},
"blob": {
"keyType": "Account",
"enabled": true
}
},
"keySource": "Microsoft.Storage"
}
}
},
{
"type": "Microsoft.Storage/storageAccounts/blobServices",
"apiVersion": "2019-06-01",
"name": "[concat(variables('FunctionName'), '/default')]",
"dependsOn": [
"[resourceId('Microsoft.Storage/storageAccounts', tolower(variables('FunctionName')))]"
],
"sku": {
"name": "Standard_LRS",
"tier": "Standard"
},
"properties": {
"cors": {
"corsRules": []
},
"deleteRetentionPolicy": {
"enabled": false
}
}
},
{
"type": "Microsoft.Storage/storageAccounts/fileServices",
"apiVersion": "2019-06-01",
"name": "[concat(variables('FunctionName'), '/default')]",
"dependsOn": [
"[resourceId('Microsoft.Storage/storageAccounts', tolower(variables('FunctionName')))]"
],
"sku": {
"name": "Standard_LRS",
"tier": "Standard"
},
"properties": {
"cors": {
"corsRules": []
}
}
},
{
"type": "Microsoft.Web/sites",
"apiVersion": "2018-11-01",
"name": "[variables('FunctionName')]",
"location": "[resourceGroup().location]",
"dependsOn": [
"[resourceId('Microsoft.Storage/storageAccounts', tolower(variables('FunctionName')))]",
"[resourceId('Microsoft.Insights/components', variables('FunctionName'))]"
],
"kind": "functionapp,linux",
"identity": {
"type": "SystemAssigned"
},
"properties": {
"name": "[variables('FunctionName')]",
"httpsOnly": true,
"clientAffinityEnabled": true,
"alwaysOn": true,
"reserved": true,
"siteConfig": {
"linuxFxVersion": "python|3.9"
}
},
"resources": [
{
"apiVersion": "2018-11-01",
"type": "config",
"name": "appsettings",
"dependsOn": [
"[concat('Microsoft.Web/sites/', variables('FunctionName'))]"
],
"properties": {
"FUNCTIONS_EXTENSION_VERSION": "~4",
"FUNCTIONS_WORKER_RUNTIME": "python",
"APPINSIGHTS_INSTRUMENTATIONKEY": "[reference(resourceId('Microsoft.insights/components', variables('FunctionName')), '2015-05-01').InstrumentationKey]",
"APPLICATIONINSIGHTS_CONNECTION_STRING": "[reference(resourceId('microsoft.insights/components', variables('FunctionName')), '2015-05-01').ConnectionString]",
"AzureWebJobsStorage": "[concat('DefaultEndpointsProtocol=https;AccountName=', toLower(variables('FunctionName')),';AccountKey=',listKeys(resourceId('Microsoft.Storage/storageAccounts', toLower(variables('FunctionName'))), '2019-06-01').keys[0].value, ';EndpointSuffix=',toLower(variables('StorageSuffix')))]",
"logAnalyticsUri": "[variables('LogAnaltyicsUri')]",
"CymruScoutBaseURL": "[trim(parameters('TeamCymruScoutBaseURL'))]",
"AuthenticationType": "[parameters('AuthenticationType')]",
"TeamCymruScoutUsername": "[trim(parameters('Username'))]",
"TeamCymruScoutPassword": "[trim(parameters('Password'))]",
"APIKey": "[trim(parameters('APIKey'))]",
"IPValues": "[parameters('IPValues')]",
"DomainValues": "[parameters('DomainValues')]",
"APIType": "[parameters('APIType')]",
"AZURE_CLIENT_ID": "[trim(parameters('AzureClientId'))]",
"AZURE_CLIENT_SECRET": "[trim(parameters('AzureClientSecret'))]",
"AZURE_TENANT_ID": "[trim(parameters('TenantId'))]",
"WorkspaceID": "[trim(parameters('WorkspaceID'))]",
"WorkspaceKey": "[trim(parameters('WorkspaceKey'))]",
"IPTableName": "[trim(parameters('IPTableName'))]",
"DomainTableName": "[trim(parameters('DomainTableName'))]",
"AccountUsageTableName": "[trim(parameters('AccountUsageTableName'))]",
"LogLevel": "[parameters('LogLevel')]",
"Schedule": "[trim(parameters('Schedule'))]",
"AccountUsageSchedule": "[trim(parameters('AccountUsageSchedule'))]",
"WEBSITE_RUN_FROM_PACKAGE": "https://github.com/niralishah-crest/TeamCymruScout/raw/main/TeamCymruScout.zip"
}
}
]
},
{
"type": "Microsoft.Storage/storageAccounts/blobServices/containers",
"apiVersion": "2019-06-01",
"name": "[concat(variables('FunctionName'), '/default/azure-webjobs-hosts')]",
"dependsOn": [
"[resourceId('Microsoft.Storage/storageAccounts/blobServices', variables('FunctionName'), 'default')]",
"[resourceId('Microsoft.Storage/storageAccounts', variables('FunctionName'))]"
],
"properties": {
"publicAccess": "None"
}
},
{
"type": "Microsoft.Storage/storageAccounts/blobServices/containers",
"apiVersion": "2019-06-01",
"name": "[concat(variables('FunctionName'), '/default/azure-webjobs-secrets')]",
"dependsOn": [
"[resourceId('Microsoft.Storage/storageAccounts/blobServices', variables('FunctionName'), 'default')]",
"[resourceId('Microsoft.Storage/storageAccounts', variables('FunctionName'))]"
],
"properties": {
"publicAccess": "None"
}
},
{
"type": "Microsoft.Storage/storageAccounts/fileServices/shares",
"apiVersion": "2019-06-01",
"name": "[concat(variables('FunctionName'), '/default/', tolower(variables('FunctionName')))]",
"dependsOn": [
"[resourceId('Microsoft.Storage/storageAccounts/fileServices', variables('FunctionName'), 'default')]",
"[resourceId('Microsoft.Storage/storageAccounts', variables('FunctionName'))]"
],
"properties": {
"shareQuota": 5120
}
}
]
}