postgres-formula/pillar.example

37 lines
801 B
Text
Raw Normal View History

2014-05-06 11:48:21 -06:00
postgres:
pg_hba.conf: salt://postgres/pg_hba.conf
2014-05-06 11:48:21 -06:00
lookup:
pkg: 'postgresql-9.3'
2014-07-13 19:19:47 +00:00
pg_hba: '/etc/postgresql/9.3/main/pg_hba.conf'
users:
localUser:
password: '98ruj923h4rf'
createdb: False
remoteUser:
password: '98ruj923h4rf'
createdb: False
# This section cover this ACL management of the pg_hba.conf file.
# <type>, <database>, <user>, [host], <method>
acls:
- ['local', 'db1', 'localUser']
- ['host', 'db2', '123.123.0.0/24', 'remoteUser']
databases:
db1:
owner: 'localUser'
user: 'localUser'
template: 'template0'
lc_ctype: 'C.UTF-8'
lc_collate: 'C.UTF-8'
db2:
owner: 'localUser'
user: 'remoteUser'
template: 'template0'
lc_ctype: 'C.UTF-8'
lc_collate: 'C.UTF-8'