2016-09-29 12:03:13 -04:00
|
|
|
---
|
|
|
|
# RHEL/CentOS only. Set a repository to use for PostgreSQL installation.
|
|
|
|
postgresql_enablerepo: ""
|
|
|
|
|
2016-09-29 12:59:22 -04:00
|
|
|
postgresql_user: postgres
|
|
|
|
postgresql_group: postgres
|
|
|
|
|
2016-09-29 21:01:39 -04:00
|
|
|
postgresql_unix_socket_dir: /var/run/postgresql
|
|
|
|
|
2016-09-29 12:03:13 -04:00
|
|
|
# Databases to ensure exist.
|
|
|
|
postgresql_databases: []
|
|
|
|
# - name: example
|
|
|
|
# lc_collate: 'en_US.UTF-8' # optional
|
|
|
|
# lc_ctype: 'en_US.UTF-8' # optional
|
|
|
|
# encoding: 'UTF-8' # optional
|
2016-09-29 16:06:34 -04:00
|
|
|
# login_host: example.com # optional, defaults to 'localhost'
|
|
|
|
# login_password: supersecure # optional
|
2016-09-29 21:01:39 -04:00
|
|
|
# login_user: admin # optional, defaults to "{{ postgresql_user }}"
|
2016-09-29 16:06:34 -04:00
|
|
|
# port: 5432 # optional
|
|
|
|
# state: present # optional, defaults to 'present'
|
2016-09-29 12:03:13 -04:00
|
|
|
|
|
|
|
# Users to ensure exist.
|
|
|
|
postgresql_users: []
|
|
|
|
# - name: jdoe
|
|
|
|
# password: supersecure # optional
|
|
|
|
# login_host: example.com # optional, defaults to 'localhost'
|
|
|
|
# login_password: supersecure # optional
|
2016-09-29 21:01:39 -04:00
|
|
|
# login_user: admin # optional, defaults to "{{ postgresql_user }}"
|
2016-09-29 12:03:13 -04:00
|
|
|
# port: 1234 # optional, defaults to 5432
|
|
|
|
# priv: table:priv1,priv2 # optional
|
|
|
|
# role_attr_flags: CREATEDB,NOSUPERUSER # optional
|
|
|
|
# state: present # optional
|