xoxys.postgres/templates/etc/containers/systemd/postgres.env.j2

19 lines
647 B
Plaintext
Raw Normal View History

#jinja2: lstrip_blocks: True
{{ ansible_managed | comment }}
POSTGRES_USER={{ postgres_user }}
POSTGRES_PASSWORD={{ postgres_password }}
2024-08-13 12:58:02 +00:00
POSTGRES_DB={{ postgres_db }}
{% if postgres_app_user is defined and postgres_app_password is defined and postgres_app_db is defined %}
POSTGRES_APP_USER={{ postgres_app_user }}
POSTGRES_APP_PASSWORD={{ postgres_app_password }}
2024-08-13 12:58:02 +00:00
POSTGRES_APP_DB={{ postgres_app_db }}
{% endif%}
{% if postgres_host_auth_method is defined %}
POSTGRES_HOST_AUTH_METHOD={{ postgres_host_auth_method }}
{% endif %}
{% if postgres_initdb_args | length > 0 %}
2023-08-06 14:28:01 +00:00
POSTGRES_INITDB_ARGS={{ postgres_initdb_args | join(" ") }}
{% endif %}