: introduce webapps playbook to handle web php applications

This commit is contained in:
VC
2025-02-13 17:52:49 +01:00
parent 978319d09d
commit 6f87eb99c6
10 changed files with 178 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
---
- name: Create roundcube db role
become_user: postgres
become: true
community.postgresql.postgresql_user:
name: "{{ roundcube_pg_role }}"
password: "{{ roundcube_pg_password }}"
- name: Create roundcube db
become_user: postgres
become: true
community.postgresql.postgresql_db:
name: "{{ roundcube_pg_database }}"
owner: "{{ roundcube_pg_role }}"