ansible-vector-role/templates/vector.yml.j2

17 lines
359 B
Plaintext
Raw Normal View History

2022-03-06 22:17:18 +01:00
{{ ansible_managed | comment }}
data_dir: "/var/lib/vector"
api:
enabled: true
address: "0.0.0.0:8686"
sources:
2022-03-06 22:31:27 +01:00
{{ sources | to_nice_yaml(indent=2, width=99999) | trim | indent(2) }}
2022-03-06 22:17:18 +01:00
transforms:
2022-03-06 22:31:27 +01:00
{{ transforms | to_nice_yaml(indent=2), width=99999| trim | indent(2) }}
2022-03-06 22:17:18 +01:00
sinks:
2022-03-06 22:31:27 +01:00
{{ sinks | to_nice_yaml(indent=2), width=99999 | trim | indent(2) }}