Skip to content

Commit

Permalink
feat(integration): Add AWS GuardDuty integration types
Browse files Browse the repository at this point in the history
  • Loading branch information
daryllimyt committed Apr 30, 2024
1 parent 9641946 commit 40a0464
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions frontend/src/types/schemas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ export type ActionType = (typeof actionTypes)[number]
/** All platforms that are supported by the system. */
const integrationPlatforms = [
"aws_cloudtrail",
"aws_guardduty",
"datadog",
"emailrep",
"sublime",
Expand All @@ -49,6 +50,7 @@ export type IntegrationPlatform = (typeof integrationPlatforms)[number]
*/
const integrationTypes = [
"integrations.aws_cloudtrail.query_cloudtrail_logs",
"integrations.aws_guardduty.query_guardduty_findings",
"integrations.datadog.list_detection_rules",
"integrations.datadog.list_security_signals",
"integrations.datadog.update_security_signal_state",
Expand Down
2 changes: 2 additions & 0 deletions tracecat/integrations/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
# Import modules to register integrations
from tracecat.integrations import (
aws_cloudtrail,
aws_guardduty,
datadog,
emailrep,
project_discovery,
Expand All @@ -18,6 +19,7 @@
"registry",
# Integrations
"aws_cloudtrail",
"aws_guardduty",
"datadog",
"emailrep",
"project_discovery",
Expand Down
1 change: 1 addition & 0 deletions tracecat/types/actions.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"open_case",
# Integrations
"integrations.aws_cloudtrail.query_cloudtrail_logs",
"integrations.aws_guardduty.query_guardduty_findings",
"integrations.datadog.list_detection_rules",
"integrations.datadog.list_security_signals",
"integrations.datadog.update_security_signal_state",
Expand Down

0 comments on commit 40a0464

Please sign in to comment.