: add koillection

This commit is contained in:
VC
2025-03-02 14:17:44 +01:00
parent 4bf895ceab
commit 123e62ffac
8 changed files with 175 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
---
- name: Create koillection db role
become_user: postgres
become: true
community.postgresql.postgresql_user:
name: "{{ koillection_pg_role }}"
password: "{{ koillection_pg_password }}"
- name: Create koillection db
become_user: postgres
become: true
community.postgresql.postgresql_db:
name: "{{ koillection_pg_database }}"
owner: "{{ koillection_pg_role }}"