MyNixOS website logo
option

services.crowdsec.localConfig.parsers.s02Enrich

A list of stage s02-enrich specifications. Inside this list, you can specify Parser Whitelists.

See https://docs.crowdsec.net/docs/whitelist/intro for details.

Declarations
Type
list of (YAML 1.1 value)
Default
[ ]
Example
[
  {
    description = "Whitelist parse events from my IPs";
    name = "myips/whitelist";
    whitelist = {
      cidr = [
        "1.2.3.0/24"
      ];
      ip = [
        "1.2.3.4"
      ];
      reason = "My IP ranges";
    };
  }
]