postgresql/tasks/users.yml

20 lines
879 B
YAML
Raw Permalink Normal View History

---
- name: Ensure PostgreSQL users are present.
postgresql_user:
name: "{{ item.name }}"
2021-02-12 19:27:28 +00:00
password: "{{ item.password | default(omit) }}"
login_host: "{{ item.login_host | default('localhost') }}"
login_password: "{{ item.login_password | default(omit) }}"
login_user: "{{ item.login_user | default(postgresql_user) }}"
login_unix_socket: "{{ item.login_unix_socket | default(postgresql_unix_socket_directories[0]) }}"
port: "{{ item.port | default(omit) }}"
with_items: "{{ postgresql_users }}"
no_log: "{{ postgres_users_no_log }}"
2018-10-01 01:23:32 +00:00
become: true
2016-09-30 01:01:39 +00:00
become_user: "{{ postgresql_user }}"
# See: https://github.com/ansible/ansible/issues/16048#issuecomment-229012509
vars:
ansible_ssh_pipelining: true
2021-02-12 19:27:28 +00:00
environment:
PGOPTIONS: "{{ (postgresql_auth_method == 'scram-sha-256') | ternary('-c password_encryption=scram-sha-256', '') }}"