-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathazuredeploy.json
514 lines (514 loc) · 27.6 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
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"metadata": {
"title": "AS-Update-Okta-Network-Zone-From-Entity",
"description": "This playbook is intended to be run from a Microsoft Sentinel Entity. It will add the IP address from Microsoft Sentinel Entities to an Okta Network Zone of your choosing.",
"prerequisites": "1. An Okta admin account is needed, along with an API token. 2. The id of an Okta network zone is also needed. 3. A Microsoft Azure key vault containing the Okta API token must also be set up. Support for the set up and configuration of each of these items can be found here: https://github.com/Accelerynt-Security/AS-Okta-NetworkZoneUpdate",
"lastUpdateTime": "2023-10-02T18:13:00Z",
"entities": ["IP"],
"tags": ["Microsoft Sentinel", "Entity", "Okta", "Network Zone"],
"support": {
"tier": "partner"
},
"author": {
"name": "Accelerynt"
}
},
"parameters": {
"PlaybookName": {
"defaultValue": "AS-Update-Okta-Network-Zone-From-Entity",
"type": "string"
},
"OktaSubdomain": {
"type": "string",
"metadata" : {
"description" : "Name of the subdomain (tenant) in the Okta Org URL"
}
},
"OktaNetworkZone": {
"type": "string",
"metadata" : {
"description" : "Name of the Okta Network Zone that the Sentinel IPs will be added to"
}
},
"KeyVaultName": {
"type": "string",
"metadata" : {
"description" : "Name of the Key Vault that stores the Okta API token"
}
},
"SecretName": {
"type": "string",
"metadata": {
"description": "Name of Key Vault Secret that contains the value of the Okta API token"
}
}
},
"variables": {
"azuresentinel": "[concat('azuresentinel-', parameters('PlaybookName'))]",
"keyvault": "[concat('keyvault-', parameters('PlaybookName'))]"
},
"resources": [
{
"type": "Microsoft.Web/connections",
"apiVersion": "2016-06-01",
"name": "[variables('azuresentinel')]",
"location": "[resourceGroup().location]",
"kind": "V1",
"properties": {
"displayName": "[parameters('PlaybookName')]",
"customParameterValues": {},
"parameterValueType": "Alternative",
"api": {
"id": "[concat('/subscriptions/', subscription().subscriptionId, '/providers/Microsoft.Web/locations/', resourceGroup().location, '/managedApis/azuresentinel')]"
}
}
},
{
"type": "Microsoft.Web/connections",
"apiVersion": "2016-06-01",
"name": "[variables('keyvault')]",
"location": "[resourceGroup().location]",
"properties": {
"displayName": "[parameters('PlaybookName')]",
"parameterValueType": "Alternative",
"alternativeParameterValues": {
"vaultName": "[parameters('KeyVaultName')]"
},
"customParameterValues": {
},
"api": {
"id": "[concat('/subscriptions/', subscription().subscriptionId, '/providers/Microsoft.Web/locations/', resourceGroup().location, '/managedApis/keyvault')]"
}
}
},
{
"type": "Microsoft.Logic/workflows",
"apiVersion": "2017-07-01",
"name": "[parameters('PlaybookName')]",
"location": "[resourceGroup().location]",
"tags": {
"LogicAppsCategory": "security"
},
"identity": {
"type": "SystemAssigned"
},
"dependsOn": [
"[resourceId('Microsoft.Web/connections', variables('azuresentinel'))]",
"[resourceId('Microsoft.Web/connections', variables('keyvault'))]"
],
"properties": {
"state": "Enabled",
"definition": {
"$schema": "https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"$connections": {
"defaultValue": {},
"type": "Object"
}
},
"triggers": {
"Microsoft_Sentinel_entity": {
"type": "ApiConnectionWebhook",
"inputs": {
"body": {
"callback_url": "@{listCallbackUrl()}"
},
"host": {
"connection": {
"name": "@parameters('$connections')['azuresentinel']['connectionId']"
}
},
"path": "/entity/@{encodeURIComponent('IP')}"
}
}
},
"actions": {
"Condition_-_Check_for_Existing_Gateways": {
"actions": {
"For_Each_-_Existing_Gateway": {
"foreach": "@variables('Network Zone Object')?['gateways']",
"actions": {
"Condition_-_Eliminate_duplicates": {
"actions": {
"Append_to_array_variable_-_IPList": {
"runAfter": {
"Append_to_string_variable_-_Gateways": [
"Succeeded"
]
},
"type": "AppendToArrayVariable",
"inputs": {
"name": "IPList",
"value": "@items('For_Each_-_Existing_Gateway')?['value']"
}
},
"Append_to_string_variable_-_Gateways": {
"runAfter": {},
"type": "AppendToStringVariable",
"inputs": {
"name": "Gateways",
"value": "\n{\n \"type\": \"@{items('For_Each_-_Existing_Gateway')?['type']}\",\n \"value\": \"@{items('For_Each_-_Existing_Gateway')?['value']}\"\n },"
}
}
},
"runAfter": {},
"expression": {
"and": [
{
"not": {
"contains": [
"@variables('IPList')",
"@items('For_Each_-_Existing_Gateway')?['value']"
]
}
}
]
},
"type": "If"
}
},
"runAfter": {},
"type": "Foreach"
}
},
"runAfter": {
"For_Each_-_Network_Zone": [
"Succeeded"
]
},
"expression": {
"and": [
{
"not": {
"equals": [
"@variables('Network Zone Object')",
"@null"
]
}
},
{
"not": {
"equals": [
"@variables('Network Zone Object')?['gateways']",
"@null"
]
}
}
]
},
"type": "If",
"description": "This is the logic that will copy over existing values"
},
"Condition_-_Check_value_has_not_been_previously_added": {
"actions": {
"Append_New_Values_to_Gateways": {
"runAfter": {},
"type": "AppendToStringVariable",
"inputs": {
"name": "Gateways",
"value": "\n{\n \"type\": \"CIDR\",\n \"value\": \"@{concat(triggerBody()?['Entity']?['properties']?['Address'], '/32')}\"\n },"
}
},
"HTTP_-_Update_Network_Zone": {
"runAfter": {
"Append_New_Values_to_Gateways": [
"Succeeded"
]
},
"type": "Http",
"inputs": {
"body": {
"gateways": "@json(concat('[', substring(variables('Gateways'), 0, sub(length(variables('Gateways')), 1)), ']'))",
"id": "@{variables('Network Zone Object')?['id']}",
"name": "@{variables('Network Zone Object')?['name']}",
"status": "@{variables('Network Zone Object')?['status']}",
"type": "@{variables('Network Zone Object')?['type']}",
"usage": "@{variables('Network Zone Object')?['usage']}"
},
"headers": {
"Accept": "application/json",
"Authorization": "SSWS @{body('Get_Secret')?['value']}",
"Content-Type": "application/json"
},
"method": "PUT",
"uri": "[concat('https://', parameters('OktaSubdomain') ,'.okta.com/api/v1/zones/@{variables(''Network Zone Object'')?[''id'']}')]"
}
}
},
"runAfter": {
"Condition_-_Check_for_Existing_Gateways": [
"Succeeded"
]
},
"expression": {
"and": [
{
"not": {
"contains": [
"@variables('IPList')",
"@concat(triggerBody()?['Entity']?['properties']?['Address'], '/32')"
]
}
}
]
},
"type": "If",
"description": "This is the logic that will copy over the new value from the entity"
},
"For_Each_-_Network_Zone": {
"foreach": "@body('Parse_JSON_-_Network_Zone_Response')",
"actions": {
"Condition_-_Check_for_Network_Zone_Name_Match": {
"actions": {
"Set_variable_-_Network_Zone_Object": {
"runAfter": {},
"type": "SetVariable",
"inputs": {
"name": "Network Zone Object",
"value": "@items('For_Each_-_Network_Zone')"
}
}
},
"runAfter": {},
"expression": {
"and": [
{
"equals": [
"@items('For_Each_-_Network_Zone')['name']",
"[parameters('OktaNetworkZone')]"
]
}
]
},
"type": "If"
}
},
"runAfter": {
"Parse_JSON_-_Network_Zone_Response": [
"Succeeded"
]
},
"type": "Foreach",
"runtimeConfiguration": {
"concurrency": {
"repetitions": 1
}
}
},
"Get_Secret": {
"runAfter": {},
"type": "ApiConnection",
"inputs": {
"host": {
"connection": {
"name": "@parameters('$connections')['keyvault']['connectionId']"
}
},
"method": "get",
"path": "[concat('/secrets/@{encodeURIComponent(''', parameters('SecretName'), ''')}/value')]"
}
},
"HTTP_-_Get_Network_Zones": {
"runAfter": {
"Initialize_variable_-_Network_Zone_Object": [
"Succeeded"
]
},
"type": "Http",
"inputs": {
"headers": {
"Accept": "application/json",
"Authorization": "SSWS @{body('Get_Secret')?['value']}",
"Content-Type": "application/json"
},
"method": "GET",
"uri": "[concat('https://', parameters('OktaSubdomain') ,'.okta.com/api/v1/zones')]"
}
},
"Initialize_Variable_-_Gateways_Payload": {
"runAfter": {
"Get_Secret": [
"Succeeded"
]
},
"type": "InitializeVariable",
"inputs": {
"variables": [
{
"name": "Gateways",
"type": "string"
}
]
},
"description": "This will be constructed from the existing list and modified as needed"
},
"Initialize_variable_-IPList": {
"runAfter": {
"Initialize_Variable_-_Gateways_Payload": [
"Succeeded"
]
},
"type": "InitializeVariable",
"inputs": {
"variables": [
{
"name": "IPList",
"type": "array"
}
]
},
"description": "This is used like a unique set to ensure no duplicate values are added to the network zone"
},
"Initialize_variable_-_Network_Zone_Object": {
"runAfter": {
"Initialize_variable_-IPList": [
"Succeeded"
]
},
"type": "InitializeVariable",
"inputs": {
"variables": [
{
"name": "Network Zone Object",
"type": "object"
}
]
}
},
"Parse_JSON_-_Network_Zone_Response": {
"runAfter": {
"HTTP_-_Get_Network_Zones": [
"Succeeded"
]
},
"type": "ParseJson",
"inputs": {
"content": "@body('HTTP_-_Get_Network_Zones')",
"schema": {
"items": {
"properties": {
"_links": {
"properties": {
"deactivate": {
"properties": {
"hints": {
"properties": {
"allow": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"href": {
"type": "string"
}
},
"type": "object"
},
"self": {
"properties": {
"hints": {
"properties": {
"allow": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"href": {
"type": "string"
}
},
"type": "object"
}
},
"type": "object"
},
"created": {
"type": "string"
},
"gateways": {},
"id": {
"type": "string"
},
"lastUpdated": {
"type": "string"
},
"name": {
"type": "string"
},
"proxies": {},
"status": {
"type": "string"
},
"system": {
"type": "boolean"
},
"type": {
"type": "string"
},
"usage": {
"type": "string"
}
},
"required": [
"type",
"id",
"name",
"status",
"usage",
"created",
"lastUpdated",
"system",
"gateways",
"proxies",
"_links"
],
"type": "object"
},
"type": "array"
}
}
}
},
"outputs": {}
},
"parameters": {
"$connections": {
"value": {
"azuresentinel": {
"connectionId": "[resourceId('Microsoft.Web/connections', variables('azuresentinel'))]",
"connectionName": "[variables('azuresentinel')]",
"id": "[concat('/subscriptions/', subscription().subscriptionId, '/providers/Microsoft.Web/locations/', resourceGroup().location, '/managedApis/azuresentinel')]",
"connectionProperties": {
"authentication": {
"type": "ManagedServiceIdentity"
}
}
},
"keyvault": {
"connectionId": "[resourceId('Microsoft.Web/connections', variables('keyvault'))]",
"connectionName": "[variables('keyvault')]",
"id": "[concat('/subscriptions/', subscription().subscriptionId,'/providers/Microsoft.Web/locations/', resourceGroup().location, '/managedApis/keyvault')]",
"connectionProperties": {
"authentication": {
"type": "ManagedServiceIdentity"
}
}
}
}
}
}
}
}
]
}