Skip to content
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 @@ -1529,6 +1529,26 @@
"version": {
"description": "The version of this template - in format <a.b.c>, where all are numbers. For example <1.0.2>.",
"type": "string"
},
"eventGroupingSettings": {
"$ref": "#/definitions/EventGroupingSettings",
"description": "The event grouping settings."
},
"customDetails": {
"description": "Dictionary of string key-value pairs of columns to be attached to the alert",
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"entityMappings": {
"$ref": "#/definitions/EntityMappings",
"description": "Array of the entity mappings of the alert rule"
},
"alertDetailsOverride": {
"type": "object",
"$ref": "#/definitions/AlertDetailsOverride",
"description": "The alert details override settings"
}
},
"type": "object"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@
"triggerThreshold": 0,
"displayName": "Changes to Amazon VPC settings",
"description": "This alert monitors changes to Amazon VPC (Virtual Private Cloud) settings such as new ACL entries and routes in route tables.\nMore information: https://medium.com/@GorillaStack/the-most-important-aws-cloudtrail-security-events-to-track-a5b9873f8255 \nand https://aws.amazon.com/vpc/",
"eventGroupingSettings": {
"aggregationKind": "AlertPerResult"
},
"tactics": [
"PrivilegeEscalation",
"LateralMovement"
Expand All @@ -39,6 +42,36 @@
]
}
],
"entityMappings": [
{
"entityType": "Account",
"fieldMappings": [
{
"identifier": "FullName",
"columnName": "AccountCustomEntity"
}
]
},
{
"entityType": "IP",
"fieldMappings": [
{
"identifier": "Address",
"columnName": "IPCustomEntity"
}
]
}
],
"customDetails": {
"EventNames": "EventName",
"EventTypes": "EventTypeName"
},
"alertDetailsOverride": {
"alertDisplayNameFormat": "Alert on event {{EventName}}",
"alertDescriptionFormat": "Suspicious activity was made by {{AccountCustomEntity}}",
"alertTacticsColumnName": null,
"alertSeverityColumnName": null
},
"alertRulesCreatedByTemplateCount": 0
}
}
Expand Down