2020-12-21 01:18:32 -06:00
|
|
|
#!/usr/bin/env ansible-playbook
|
|
|
|
# vim:ft=ansible:
|
|
|
|
# Database servers
|
|
|
|
---
|
|
|
|
- hosts: psql1.desu.ltd
|
|
|
|
roles:
|
2020-12-24 09:19:12 -06:00
|
|
|
- role: backup
|
|
|
|
tags: [ backup ]
|
2020-12-21 01:18:32 -06:00
|
|
|
- role: postgresql
|
|
|
|
vars:
|
|
|
|
postgresql_global_config_options:
|
|
|
|
- option: listen_addresses
|
|
|
|
value: 192.168.164.156
|
|
|
|
postgresql_hba_entries:
|
2021-08-01 21:35:41 -05:00
|
|
|
- { type: local, database: all, user: postgres, auth_method: trust }
|
2021-01-26 04:25:27 -06:00
|
|
|
- { type: local, database: all, user: all, auth_method: md5 }
|
2020-12-21 01:18:32 -06:00
|
|
|
- { 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 }
|
|
|
|
# Used for internal access from other nodes
|
|
|
|
- { type: host, database: all, user: all, address: '192.168.0.0/16', auth_method: md5 }
|
|
|
|
postgresql_users:
|
2020-12-29 09:06:08 -06:00
|
|
|
- name: gitea-desultd
|
2020-12-21 01:18:32 -06:00
|
|
|
password: "{{ secret_gitea_db_pass }}"
|
2021-04-03 03:40:29 -05:00
|
|
|
- name: gulagbot-desultd
|
|
|
|
password: "{{ secret_gulagbot_db_pass }}"
|
2021-08-01 21:35:41 -05:00
|
|
|
- name: netbox-desultd
|
|
|
|
password: "{{ secret_netbox_db_pass }}"
|
2020-12-29 09:06:08 -06:00
|
|
|
- name: nextcloud-desultd
|
2020-12-21 01:18:32 -06:00
|
|
|
password: "{{ secret_nextcloud_db_pass }}"
|
2021-06-03 19:11:50 -05:00
|
|
|
- name: peertube-cowfee
|
|
|
|
password: "{{ secret_peertube_db_pass }}"
|
2021-01-26 04:25:27 -06:00
|
|
|
- name: pleroma-cowfee
|
|
|
|
password: "{{ secret_pleroma_9iron_db_pass }}"
|
2020-12-21 01:18:32 -06:00
|
|
|
postgresql_databases:
|
2020-12-29 09:06:08 -06:00
|
|
|
- name: gitea-desultd
|
|
|
|
owner: gitea-desultd
|
2021-04-03 03:40:29 -05:00
|
|
|
- name: gulagbot-desultd
|
|
|
|
owner: gulagbot-desultd
|
2021-08-01 21:35:41 -05:00
|
|
|
- name: netbox-desultd
|
|
|
|
owner: netbox-desultd
|
2020-12-29 09:06:08 -06:00
|
|
|
- name: nextcloud-desultd
|
|
|
|
owner: nextcloud-desultd
|
2021-03-10 11:29:49 -06:00
|
|
|
- name: pleroma_cowfee
|
2021-03-11 09:39:04 -06:00
|
|
|
owner: pleroma-cowfee
|
2021-06-07 02:52:11 -05:00
|
|
|
- name: peertube
|
2021-06-03 19:11:50 -05:00
|
|
|
owner: peertube-cowfee
|
2020-12-21 01:18:32 -06:00
|
|
|
tags: [ db, psql ]
|