move zeek bpf from zeek pillar to bpf pillar

This commit is contained in:
m0duspwnens
2023-03-20 15:28:33 -04:00
parent 460f84d80f
commit 903ad530fe
7 changed files with 21 additions and 8 deletions
+4 -3
View File
@@ -1,4 +1,5 @@
bpf:
pcap: []
suricata: []
zeek: []
pcap: []
suricata: []
zeek:
- ip or not ip
+3
View File
@@ -1,10 +1,13 @@
bpf:
pcap:
description: List of BPF filters to apply to PCAP.
multiline: True
helpLink: bpf.html
suricata:
description: List of BPF filters to apply to Suricata.
multiline: True
helpLink: bpf.html
zeek:
description: List of BPF filters to apply to Zeek.
multiline: True
helpLink: bpf.html
+4
View File
@@ -0,0 +1,4 @@
{% import_yaml 'bpf/defaults.yaml' as BPFDEFAULTS %}
{% set BPFMERGED = salt['pillar.get']('bpf', BPFDEFAULTS.bpf, merge=True) %}
{% set ZEEKBPF = BPFMERGED.zeek %}