pg_hba.conf.j2 498 B

12345678910
  1. {{ ansible_managed | comment }}
  2. # PostgreSQL Client Authentication Configuration File
  3. # ===================================================
  4. #
  5. # See: https://www.postgresql.org/docs/current/static/auth-pg-hba-conf.html
  6. {% for client in postgresql_hba_entries %}
  7. {{ client.type }} {{ client.database }} {{ client.user }} {{ client.address|default('') }} {{ client.ip_address|default('') }} {{ client.ip_mask|default('') }} {{ client.auth_method }} {{ client.auth_options|default("") }}
  8. {% endfor %}