filebeat oss configuration updated

This commit is contained in:
Gonzalo Acuña 2022-02-11 12:04:05 -03:00
parent a5441ddc8a
commit 2e17343c68
No known key found for this signature in database
GPG Key ID: 646BA79A313A2270

View File

@ -16,7 +16,10 @@ setup.ilm.enabled: false
# Send events directly to Opensearch
output.elasticsearch:
hosts: {{ filebeat_output_indexer_hosts | to_json }}
hosts:
{% for item in filebeat_output_indexer_hosts %}
- {{ item }}:9700
{% endfor %}
{% if filebeat_security %}
username: {{ indexer_security_user }}