mirror of
https://github.com/prometheus-community/ansible
synced 2024-11-23 12:23:12 +00:00
4648988bbb
Signed-off-by: anviar <oleg.kluchkin+github@gmail.com>
15 lines
391 B
Django/Jinja
15 lines
391 B
Django/Jinja
{{ ansible_managed | comment }}
|
|
|
|
{% if postgres_exporter_uri is defined %}
|
|
auth_modules:
|
|
foo1: # Set this to any name you want
|
|
type: userpass
|
|
userpass:
|
|
username: {{ postgres_exporter_username }}
|
|
password: {{ postgres_exporter_password }}
|
|
options:
|
|
# options become key=value parameters of the DSN
|
|
sslmode: disable
|
|
{% else %}
|
|
auth_modules: {}
|
|
{% endif %}
|