Compare commits

..

3 Commits

Author SHA1 Message Date
572dd6d204 Merge branch 'test' 2023-06-25 00:28:11 +02:00
8b3f83a385 grant schema permission 2023-06-25 00:24:59 +02:00
1477554a35 install acl package 2023-06-22 21:44:30 +02:00

View File

@ -41,3 +41,12 @@
obj: "{{ postgresql_database }}"
role: "{{ postgresql_username }}"
become_user: postgres
- name: Grant all privs on schema public to user
community.postgresql.postgresql_privs:
db: "{{ postgresql_database }}"
privs: ALL
type: schema
obj: public
role: "{{ postgresql_username }}"
become_user: postgres