Add Pleroma DB configuration

This commit is contained in:
Salt 2020-12-27 13:15:59 -06:00
parent 7726fffb08
commit cf2ce15ca0
2 changed files with 18 additions and 0 deletions

View File

@ -109,3 +109,15 @@ secret_nextcloud_admin_pass: !vault |
62326334356339326330623336363038323431363266306265386635343432383764623437386462
3534643731333331320a393462323264666135666134336536633639613065363339333131653433
37653732313664356330356139646336353735613336326563366361383737653538
# For Pleroma
secret_pleroma_9iron_db_pass: !vault |
$ANSIBLE_VAULT;1.1;AES256
34343838386134656236313462653531663839363030333630383332386535356431326436633137
3261323632653635383930333131333235373437653733300a363562666264616138623832666137
61333039646332343838346633363035343434303036643465353062353062303961383138643564
3338393765393733340a626436653666363236643938613466643530326665653764333933393437
37613033653864643965323162373366306233626235663461326266376662663634353066386139
37636162313364623933396232366239633338363539626637373163333130373665373038363566
65646633636638653335356536323334646632366164633532636634376632356166306139393766
38633934623639366263

View File

@ -53,6 +53,8 @@
password: "{{ secret_gitea_9iron_db_pass }}"
- name: nextcloud
password: "{{ secret_nextcloud_9iron_db_pass }}"
- name: pleroma
password: "{{ secret_pleroma_9iron_db_pass }}"
postgresql_databases:
- name: gitea
lc_collate: C.UTF-8
@ -62,5 +64,9 @@
lc_collate: C.UTF-8
lc_ctype: C.UTF-8
owner: nextcloud
- name: pleroma
lc_collate: C.UTF-8
lc_ctype: C.UTF-8
owner: pleroma
become: yes
tags: [ db, psql ]