-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9322 from nlepagnez/New-Solution-Components
New solution components
- Loading branch information
Showing
41 changed files
with
1,037 additions
and
271 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
75 changes: 48 additions & 27 deletions
75
...ange Security - Exchange On-Premises/Data Connectors/ESI-ExchangeAdminAuditLogEvents.json
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
73 changes: 73 additions & 0 deletions
73
... Exchange On-Premises/Data Connectors/azuredeploy_ESI_DCR_Option1MSExchangeAuditLogs.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
{ | ||
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", | ||
"contentVersion": "1.0.0.0", | ||
"parameters": { | ||
"dcrName": { | ||
"type": "string", | ||
"defaultValue": "DCR-Option1-MSExchangeAuditLogs", | ||
"minLength": 1, | ||
"metadata": { | ||
"description": "Name of the data collection rule" | ||
} | ||
}, | ||
"location": { | ||
"type": "string", | ||
"defaultValue": "[resourceGroup().location]", | ||
"metadata": { | ||
"description": "Location for data collection rule" | ||
} | ||
}, | ||
"workspacename": { | ||
"type": "string", | ||
"minLength": 1, | ||
"metadata": { | ||
"description": "The log analitycs workspace name" | ||
} | ||
} | ||
}, | ||
"variables": { | ||
"workspaceResourceId": "[concat('/subscriptions/',subscription().subscriptionId,'/resourceGroups/',resourceGroup().name,'/providers/Microsoft.operationalinsights/workspaces/',parameters('workspacename'))]" | ||
}, | ||
"resources": [ | ||
{ | ||
"type": "Microsoft.Insights/dataCollectionRules", | ||
"apiVersion": "2021-09-01-preview", | ||
"name": "[parameters('dcrName')]", | ||
"location": "[parameters('location')]", | ||
"kind": "Windows", | ||
"properties": { | ||
"dataSources": { | ||
"windowsEventLogs": [ | ||
{ | ||
"streams": [ | ||
"Microsoft-Event" | ||
], | ||
"xPathQueries": [ | ||
"\\MSExchange Management!*" | ||
], | ||
"name": "eventLogsDataSource" | ||
} | ||
] | ||
}, | ||
"destinations": { | ||
"logAnalytics": [ | ||
{ | ||
"workspaceResourceId": "[variables('workspaceResourceId')]", | ||
"name": "la-data-destination" | ||
} | ||
] | ||
}, | ||
"dataFlows": [ | ||
{ | ||
"streams": [ | ||
"Microsoft-Event" | ||
], | ||
"destinations": [ | ||
"la-data-destination" | ||
] | ||
} | ||
] | ||
} | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file added
BIN
+68.5 KB
Solutions/Microsoft Exchange Security - Exchange On-Premises/Package/3.1.0.zip
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.