Skip to content

Update falco.yaml #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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