aboutsummaryrefslogtreecommitdiffhomepage
path: root/tasks/postgres-user.yml
blob: 308dab839ef65aa1e0b5749e202138247ca0db68 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
- name: Test if the PostgreSQL server is up
  become: true
  become_user: postgres
  become_method: su
  command: psql --port={{ postgres_port }} --command='select NOW()'
  register: postgres_up
  ignore_errors: yes
  check_mode: no
  changed_when: false

- name: Create PostgreSQL user
  become: true
  become_user: postgres
  become_method: su
  postgresql_user:
    port:             "{{ postgres_port }}"
    name:             "{{ postgres_username }}"
    password:         "{{ postgres_password }}"
    encrypted:        true
    role_attr_flags:  "{{ postgres_permissions }}"
  when:
    - postgres_up.rc == 0