crowdsec/test/ansible/vars/postgres.yml
mmetc a19748ae35
Rename directory "tests" to "test" (#2094)
If you use a ./test/local directory, you need to create it again:
$ make clean bats-build bats-fixture
2023-03-03 15:54:49 +01:00

31 lines
536 B
YAML

# 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