mirror of
https://gitea.0xace.cc/ansible-galaxy/postgresql.git
synced 2024-11-25 08:16:43 +00:00
11 lines
333 B
YAML
11 lines
333 B
YAML
- name: Set initial PostgreSQL user
|
|
become: true
|
|
become_user: postgres
|
|
vars:
|
|
ansible_python_interpreter: '/usr/bin/env python3'
|
|
community.postgresql.postgresql_user:
|
|
db: "{{ postgresql_superuser_db }}"
|
|
name: "{{ postgresql_superuser_name }}"
|
|
password: "{{ postgresql_superuser_password }}"
|
|
state: present
|