Skip to content

Commit

Permalink
Fix for support case 326048 (#428)
Browse files Browse the repository at this point in the history
  • Loading branch information
bbaassssiiee authored and chukka committed Nov 26, 2024
1 parent c12c2d9 commit 005008a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ host all all ::1/128 md5
## remote connections IPv4
{% if postgres_allowed_hosts and postgres_allowed_hosts is iterable -%}
{%- for host in postgres_allowed_hosts %}
{{ host.type | default('host') }} {{ host.database | default('all') }} {{ host.user | default('all') }} {{ host.address | default('0.0.0.0/0') }} {{ item.auth | default('trust') }}
{{ host.type | default('host') }} {{ host.database | default('all') }} {{ host.user | default('all') }} {{ host.address | default('0.0.0.0/0') }} {{ host.method | default('trust') }}
{% endfor %}
{% endif %}

0 comments on commit 005008a

Please sign in to comment.