17 lines
578 B
Django/Jinja
17 lines
578 B
Django/Jinja
#jinja2: lstrip_blocks: True
|
|
{{ ansible_managed | comment }}
|
|
POSTGRES_USER={{ postgres_user }}
|
|
POSTGRES_PASSWORD={{ postgres_password }}
|
|
{% if postgres_app_user is defined and postgres_app_password is defined %}
|
|
POSTGRES_APP_USER={{ postgres_app_user }}
|
|
POSTGRES_APP_PASSWORD={{ postgres_app_password }}
|
|
{% enfif %}
|
|
POSTGRES_DB={{ postgres_db }}
|
|
|
|
{% if postgres_host_auth_method is defined %}
|
|
POSTGRES_HOST_AUTH_METHOD={{ postgres_host_auth_method }}
|
|
{% endif %}
|
|
{% if postgres_initdb_args | length > 0 %}
|
|
POSTGRES_INITDB_ARGS={{ postgres_initdb_args | join(" ") }}
|
|
{% endif %}
|