Advertisement
Guest User

Untitled

a guest
Nov 21st, 2018
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.33 KB | None | 0 0
  1.  - name: Create PostgreSQL users
  2.       postgresql_user:
  3.         encrypted: True
  4.         name: "{{ item.key }}"
  5.         password: "{{ item.value.password|default('') }}"
  6.         role_attr_flags: "{{ item.value.flags|default('') }}"
  7.       with_dict: "{{ (schema|default(postgresql_schema)).users|default({}) }}"
  8.       no_log: True
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement