Skip to content

Commit

Permalink
Add missing conf files.
Browse files Browse the repository at this point in the history
  • Loading branch information
mstemm committed Aug 23, 2016
1 parent 5be22ed commit 055a4eb
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 0 deletions.
27 changes: 27 additions & 0 deletions test/confs/file_output.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# File containing Falco rules, loaded at startup.
rules_file: /etc/falco_rules.yaml

# Whether to output events in json or text
json_output: false

# Send information logs to stderr and/or syslog Note these are *not* security
# notification logs! These are just Falco lifecycle (and possibly error) logs.
log_stderr: false
log_syslog: false

# Where security notifications should go.
# Multiple outputs can be enabled.

syslog_output:
enabled: false

file_output:
enabled: true
filename: /tmp/falco_outputs/file_output.txt

stdout_output:
enabled: true

program_output:
enabled: false
program: mail -s "Falco Notification" someone@example.com
27 changes: 27 additions & 0 deletions test/confs/program_output.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# File containing Falco rules, loaded at startup.
rules_file: /etc/falco_rules.yaml

# Whether to output events in json or text
json_output: false

# Send information logs to stderr and/or syslog Note these are *not* security
# notification logs! These are just Falco lifecycle (and possibly error) logs.
log_stderr: false
log_syslog: false

# Where security notifications should go.
# Multiple outputs can be enabled.

syslog_output:
enabled: false

file_output:
enabled: false
filename: ./output.txt

stdout_output:
enabled: true

program_output:
enabled: true
program: cat > /tmp/falco_outputs/program_output.txt

0 comments on commit 055a4eb

Please sign in to comment.