2020-12-21 01:18:32 -06:00
|
|
|
#!/usr/bin/env ansible-playbook
|
|
|
|
# vim:ft=ansible:
|
|
|
|
# Database servers
|
|
|
|
---
|
2021-10-15 19:03:55 -05:00
|
|
|
- hosts: psql1.dallas.mgmt.desu.ltd
|
2020-12-21 01:18:32 -06:00
|
|
|
roles:
|
2020-12-24 09:19:12 -06:00
|
|
|
- role: backup
|
|
|
|
tags: [ backup ]
|
2021-09-18 16:10:54 -05:00
|
|
|
- role: geerlingguy.postgresql
|
2020-12-21 01:18:32 -06:00
|
|
|
vars:
|
|
|
|
postgresql_global_config_options:
|
|
|
|
- option: listen_addresses
|
2021-08-23 18:18:53 -05:00
|
|
|
value: 192.168.164.156,127.0.0.1
|
2021-08-22 10:45:23 -05:00
|
|
|
- option: max_connections
|
|
|
|
value: 60
|
|
|
|
- option: shared_buffers
|
|
|
|
value: 128MB
|
2020-12-21 01:18:32 -06:00
|
|
|
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-09-26 08:03:37 -05:00
|
|
|
- name: gulagbot-test
|
|
|
|
password: "{{ secret_gulagbot_test_db_pass }}"
|
2021-08-23 18:18:53 -05:00
|
|
|
- name: nagios
|
|
|
|
password: "{{ secret_postgresql_monitoring_password }}"
|
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 }}"
|
2021-10-02 22:03:05 -05:00
|
|
|
- name: synapse-desultd
|
|
|
|
password: "{{ secret_synapse_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-09-26 08:03:37 -05:00
|
|
|
- name: gulagbot-test
|
|
|
|
owner: gulagbot-test
|
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
|
2021-10-02 22:03:05 -05:00
|
|
|
- name: synapse-desultd
|
|
|
|
lc_collate: C
|
|
|
|
lc_ctype: C
|
|
|
|
owner: synapse-desultd
|
2020-12-21 01:18:32 -06:00
|
|
|
tags: [ db, psql ]
|