fix: default attributes for user
This commit is contained in:
parent
7b4e1b63f4
commit
d07a5fabb9
1 changed files with 1 additions and 1 deletions
|
@ -60,7 +60,7 @@
|
||||||
password: '{{ item.password }}'
|
password: '{{ item.password }}'
|
||||||
db: '{{ item.database }}'
|
db: '{{ item.database }}'
|
||||||
priv: '{{ item.privileges|join("/") }}'
|
priv: '{{ item.privileges|join("/") }}'
|
||||||
role_attr_flags: '{{ item.attributes|join(",")|default("") }}'
|
role_attr_flags: '{{ item.attributes|default([])|join(",") }}'
|
||||||
state: '{{ item.state|default("present") }}'
|
state: '{{ item.state|default("present") }}'
|
||||||
loop: '{{ postgresql_users }}'
|
loop: '{{ postgresql_users }}'
|
||||||
loop_control:
|
loop_control:
|
||||||
|
|
Loading…
Reference in a new issue