14 lines
363 B
Python
14 lines
363 B
Python
for user, config in node.metadata.get('postgresql/roles').items():
|
|
postgres_roles[user] = {
|
|
'password': config['password'],
|
|
'needs': {
|
|
'svc_systemd:postgresql',
|
|
},
|
|
}
|
|
|
|
for database, config in node.metadata.get('postgresql/databases').items():
|
|
postgres_dbs[database] = config
|
|
|
|
svc_systemd = {
|
|
'postgresql': {},
|
|
}
|