a19748ae35
If you use a ./test/local directory, you need to create it again: $ make clean bats-build bats-fixture
30 lines
536 B
YAML
30 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
|