give SUPERUSER privilege to the postgresql user (#40066)

This commit is contained in:
Emmanuel Cazenave 2020-10-07 16:41:14 +02:00
parent d34dd7b62c
commit 63a50d7d10
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@
- name: "create the postgresql user named {{user}}"
postgresql_user:
name: "{{user}}"
role_attr_flags: CREATEDB,LOGIN
role_attr_flags: SUPERUSER,LOGIN
port: "{{postgresql_port}}"
become: yes