Add home db playbook
This commit is contained in:
parent
d4a25acaeb
commit
cb6581b708
29
playbooks/home_db.yml
Executable file
29
playbooks/home_db.yml
Executable file
@ -0,0 +1,29 @@
|
||||
#!/usr/bin/env ansible-playbook
|
||||
# vim:ft=ansible:
|
||||
---
|
||||
# Home media storage Pi
|
||||
- hosts: vm-psql-1.home.mgmt.desu.ltd
|
||||
roles:
|
||||
- role: backup
|
||||
vars:
|
||||
backup_time: "Mon *-*-* 02:00:00"
|
||||
tags: [ backup ]
|
||||
- role: geerlingguy.postgresql
|
||||
vars:
|
||||
postgresql_global_config_options:
|
||||
- option: listen_addresses
|
||||
value: 192.168.103.1,172.23.103.1,127.0.0.1
|
||||
postgresql_hba_entries:
|
||||
- { type: local, database: all, user: postgres, auth_method: peer }
|
||||
- { type: local, database: all, user: all, auth_method: md5 }
|
||||
- { type: host, database: all, user: all, address: '127.0.0.0/8', 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 }
|
||||
# Allow hosts over zerotier
|
||||
- { type: host, database: all, user: all, address: '172.23.0.0/16', auth_method: md5 }
|
||||
postgresql_users:
|
||||
- name: nagios
|
||||
password: "{{ secret_postgresql_monitoring_password }}"
|
||||
postgresql_databases: []
|
||||
tags: [ home, db, psql ]
|
1
site.yml
1
site.yml
@ -17,6 +17,7 @@
|
||||
- import_playbook: playbooks/device_roles_game.yml
|
||||
- import_playbook: playbooks/device_roles_workstation.yml
|
||||
# Home configuration
|
||||
- import_playbook: playbooks/home_db.yml
|
||||
- import_playbook: playbooks/home_media.yml
|
||||
- import_playbook: playbooks/home_automation.yml
|
||||
# Production configuration
|
||||
|
Loading…
Reference in New Issue
Block a user