crowdsec/test/ansible/vars/postgres.yml

31 lines
536 B
YAML
Raw Normal View History

# vim: set ft=yaml.ansible:
---
# The password is insecure since the db is ephemeral and only listen to localhost.
postgresql_users:
- name: postgres
password: postgres
postgresql_hba_entries:
- type: local
database: all
user: postgres
auth_method: peer
- type: local
database: all
user: all
auth_method: peer
- type: host
database: all
user: all
address: "127.0.0.1/32"
auth_method: md5
- type: host
database: all
user: all
address: "::1/128"
auth_method: md5