Skip to content

Commit

Permalink
new(engine): add 'rules' section description to falco.yaml
Browse files Browse the repository at this point in the history
Signed-off-by: Luca Guerra <luca@guerra.sh>
  • Loading branch information
LucaGuerra committed Apr 23, 2024
1 parent 18d067a commit 59ea565
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions falco.yaml
Expand Up @@ -177,6 +177,39 @@ rules_files:
- /etc/falco/falco_rules.local.yaml
- /etc/falco/rules.d

# [Experimental] `rules`
#
# --- [Description]
#
# Falco rules can be enabled or disabled by name (with wildcards *) and/or by tag.
#
# This configuration is applied after all rules files have been loaded, including
# their overrides, and will take precedence over the enabled/disabled configuration
# specified or overridden in the rules files.
#
# The ordering matters and selections are evaluated in order. For instance, if you
# need to only enable a rule you would first disable all of them and then only
# enable what you need, regardless of the enabled status in the files.
#
# --- [Examples]
#
# Only enable two rules:
#
# rules:
# - disable:
# rule: "*"
# - enable:
# rule: Netcat Remote Code Execution in Container
# - enable:
# rule: Delete or rename shell history
#
# Disable all rules with a specific tag:
#
# rules:
# - disable:
# tag: network
#

################
# Falco engine #
################
Expand Down

0 comments on commit 59ea565

Please sign in to comment.