File tree Expand file tree Collapse file tree 2 files changed +12
-2
lines changed
Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 1+ ## v0.3.0 [ 2025-02-14]
2+
3+ _ Enhancements_
4+
5+ - Add ` operation_src ` and ` resource_src ` columns to all detections to preserve original log data in columns with consistent naming.
6+
17## v0.2.0 [ 2025-02-06]
28
39_ Enhancements_
@@ -11,6 +17,6 @@ _What's new?_
1117- New benchmarks added:
1218 - Audit Log Detections benchmark (` powerpipe benchmark run gcp_audit_log_detections.benchmark.audit_log_detections ` ).
1319 - MITRE ATT&CK v16.1 benchmark (` powerpipe benchmark run gcp_audit_log_detections.benchmark.mitre_attack_v161 ` ).
14-
20+
1521- New dashboards added:
1622 - [ Audit Log Activity Dashboard] ( https://hub.powerpipe.io/mods/turbot/gcp_audit_log_detections/dashboards/dashboard.activity_dashboard )
Original file line number Diff line number Diff line change 1919 tp_index as project,
2020 tp_id as source_id,
2121 -- Create new aliases to preserve original row data
22+ operation as operation_src,
23+ resource as resource_src,
2224 *
25+ exclude operation, resource
2326 EOQ
2427
2528 detection_sql_where_conditions = <<-EOQ
2629 and severity != ' Error'
2730 -- TODO: Do we need to check operation?
2831 -- and (operation_src is null or operation_src.last = true )
2932 EOQ
33+
3034 // Keep same order as SQL statement for easier readability
3135 detection_display_columns = [
3236 " timestamp" ,
4145
4246locals {
4347 detection_sql_resource_column_resource_name = replace(local.detection_sql_columns, " __RESOURCE_SQL__" , " resource_name" )
44- }
48+ }
You can’t perform that action at this time.
0 commit comments