12345678910111213141516171819202122232425 |
- ---
- - name: Ensure PostgreSQL users are configured correctly.
- postgresql_user:
- name: "{{ item.name }}"
- password: "{{ item.password | default(omit) }}"
- encrypted: "{{ item.encrypted | default(omit) }}"
- priv: "{{ item.priv | default(omit) }}"
- role_attr_flags: "{{ item.role_attr_flags | default(omit) }}"
- db: "{{ item.db | 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) }}"
- state: "{{ item.state | default('present') }}"
- with_items: "{{ postgresql_users }}"
- no_log: "{{ postgres_users_no_log }}"
- become: true
- become_user: "{{ postgresql_user }}"
- # See: https://github.com/ansible/ansible/issues/16048#issuecomment-229012509
- vars:
- ansible_ssh_pipelining: true
- environment:
- PGOPTIONS: "{{ (postgresql_auth_method == 'scram-sha-256') | ternary('-c password_encryption=scram-sha-256', '') }}"
|