Skip to content

Commit

Permalink
fix: correct the provider for the create, delete and modify routes in…
Browse files Browse the repository at this point in the history
… EC2 VPCs (#3500)

(cherry picked from commit 709cfdd)
  • Loading branch information
leandrojmp authored and github-actions[bot] committed Mar 8, 2024
1 parent 7c37dea commit 4d071fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ timestamp_override = "event.ingested"
type = "query"

query = '''
event.dataset:aws.cloudtrail and event.provider:cloudtrail.amazonaws.com and event.action:(CreateRoute or CreateRouteTable) and
event.dataset:aws.cloudtrail and event.provider:ec2.amazonaws.com and event.action:(CreateRoute or CreateRouteTable) and
event.outcome:success
'''

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ timestamp_override = "event.ingested"
type = "query"

query = '''
event.dataset:aws.cloudtrail and event.provider:cloudtrail.amazonaws.com and event.action:(ReplaceRoute or ReplaceRouteTableAssociation or
event.dataset:aws.cloudtrail and event.provider:ec2.amazonaws.com and event.action:(ReplaceRoute or ReplaceRouteTableAssociation or
DeleteRouteTable or DeleteRoute or DisassociateRouteTable) and event.outcome:success
'''

Expand Down

0 comments on commit 4d071fe

Please sign in to comment.