crowdsec/tests/ansible/vars/postgres.yml

30 lines
508 B
YAML
Raw Normal View History

---
# 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