Skip to content

Commit

Permalink
update example config yml with new features, allowed clients, users, …
Browse files Browse the repository at this point in the history
…databases
  • Loading branch information
s4ke committed May 29, 2020
1 parent 4805ee6 commit a8b784f
Showing 1 changed file with 20 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,25 @@ postgresql_packages:
- postgresql-contrib
- libpq-dev

postgresql_hba_entries_post:
postgresql_hba_entries:
- { type: local, database: all, user: postgres, auth_method: peer }
# add your entries for your manually created databases here

postgresql_cluster_allowed_clients: []
#- name: "descriptive name"
# ip: "ip of allowed client"

postgresql_users: []
#- name: "user"
# password: "password"
# encrypted: true
# state: present
# role_attr_flags: "SUPERUSER"

postgresql_databases: []
#- name: "dbname"
# lc_collate: 'en_US.UTF-8'
# lc_ctype: 'en_US.UTF-8'
# encoding: 'UTF-8'
# owner: "dbowner"
# state: present

0 comments on commit a8b784f

Please sign in to comment.