Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Repackaging - vArmour Application Controller #8957

Merged
merged 1 commit into from
Sep 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"Description": "This vArmour solution enables streaming of Application Controller Violation Alerts into Microsoft Sentinel, so you can take advantage of search & correlation, alerting, & threat intelligence enrichment for each log.\n\r\n1. **vArmour Application Controller via AMA** - This data connector helps in ingesting vArmour Application Controller logs into your Log Analytics Workspace using the new Azure Monitor Agent. Learn more about ingesting using the new Azure Monitor Agent [here](https://learn.microsoft.com/azure/sentinel/connect-cef-ama). **Microsoft recommends using this Data Connector**.\n\r\n2. **vArmour Application Controller via Legacy Agent** - This data connector helps in ingesting vArmour Application Controller logs into your Log Analytics Workspace using the legacy Log Analytics agent.\n\n**NOTE:** Microsoft recommends installation of vArmour Application Controller via AMA Connector. Legacy connector uses the Log Analytics agent which is about to be deprecated by **Aug 31, 2024,** and thus should only be installed where AMA is not supported. Using MMA and AMA on same machine can cause log duplication and extra ingestion cost [more details](https://learn.microsoft.com/en-us/azure/sentinel/ama-migrate).",
"Data Connectors": [
"Data Connectors/Connector_vArmour_AppController_CEF.json",
"Data Connectors/template_Connector_vArmour_AppController_CEFAMA.json"
"Data Connectors/template_vArmour_AppControllerAMA.json"
],
"Workbooks": [
"Workbooks/vArmour_AppContoller_Workbook.json"
Expand Down
Binary file modified Solutions/vArmour Application Controller/Package/3.0.0.zip
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,7 @@
"text": "This Solution installs the data connector for vArmour Application Controller. You can get vArmour Application Controller CommonSecurityLog data in your Microsoft Sentinel workspace. After installing the solution, configure and enable this data connector by following guidance in Manage solution view."
}
},

{
{
"name": "dataconnectors-link2",
"type": "Microsoft.Common.TextBlock",
"options": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -957,16 +957,16 @@
"status": "Available",
"requiredDataConnectors": [
{
"connectorId": "vArmourAC",
"dataTypes": [
"CommonSecurityLog"
]
],
"connectorId": "vArmourAC"
},
{
"connectorId": "vArmourACAma",
"dataTypes": [
"CommonSecurityLog"
]
],
"connectorId": "vArmourACAma"
}
],
"tactics": [
Expand All @@ -982,17 +982,17 @@
"entityType": "Host",
"fieldMappings": [
{
"identifier": "HostName",
"columnName": "DestinationHostName"
"columnName": "DestinationHostName",
"identifier": "HostName"
}
]
},
{
"entityType": "IP",
"fieldMappings": [
{
"identifier": "Address",
"columnName": "SourceIP"
"columnName": "SourceIP",
"identifier": "Address"
}
]
}
Expand Down
Loading