Skip to content
Open
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
8 changes: 7 additions & 1 deletion falco.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ rules_file:
- /etc/falco/falco_rules.yaml
- /etc/falco/falco_rules.local.yaml
- /etc/falco/rules.d
- /etc/falco/gcp_auditlog_rules.yaml

#
# Plugins that are available for use. These plugins are not loaded by
Expand All @@ -55,13 +56,18 @@ plugins:
# https://github.com/falcosecurity/plugins/blob/master/plugins/cloudtrail/README.md
- name: json
library_path: libjson.so
- name: gcpaudit
library_path: libgcpaudit.so
open_params: "falco-plugin-sub"
init_config:
project_id: "[PROJECT ID]"

# Setting this list to empty ensures that the above plugins are *not*
# loaded and enabled by default. If you want to use the above plugins,
# set a meaningful init_config/open_params for the cloudtrail plugin
# and then change this to:
# load_plugins: [cloudtrail, json]
load_plugins: []
load_plugins: [json, gcpaudit]

# Watch config file and rules files for modification.
# When a file is modified, Falco will propagate new config,
Expand Down