Ansible roles
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

9 lines
353 B

---
url: {{ j2gelf_url }}
{% if j2gelf_user is defined and j2gelf_user != '' and j2gelf_pass is defined and j2gelf_pass != '' %}
username: '{{ j2gelf_user }}'
password: '{{ j2gelf_pass | regex_replace('\\\'','\'\'') }}'
{% endif %}
compress: {{ j2gelf_compress | ternary('True','False') }}
keep_alive: {{ j2gelf_keep_alive | ternary('True','False') }}