ae6c2b6
@@ -75,6 +75,13 @@
owner: "{{ datanommerDBUser }}"
encoding: UTF-8
+ - name: grant datanommer_ro read only access to datanommer2
+ postgresql_privs:
+ database: datanommer2
+ privs: SELECT
+ objs: ALL_IN_SCHEMA
+ roles: datanommer_ro
+
# Enable timescaledb
- name: enable timescaledb
postgresql_ext:
The datanommer_ro user was created in the task, but never got privilege to read from datanommer2 db. This commit is fixing that.
Signed-off-by: Michal Konečný mkonecny@redhat.com
Build succeeded. https://fedora.softwarefactory-project.io/zuul/buildset/7866b925af464080b07fa8fb735cc6dd
Looks good to me. You want to merge and run the playbook or would you like me to? ;)
Let me do it
rebased onto ae6c2b6
Build succeeded. https://fedora.softwarefactory-project.io/zuul/buildset/c7bc34f0e00e46df8e1f347a87d11b84
Pull-Request has been merged by zlopez
Merged and deployed
The datanommer_ro user was created in the task, but never got privilege to read
from datanommer2 db. This commit is fixing that.
Signed-off-by: Michal Konečný mkonecny@redhat.com