bundles/postgresql: add apt packages, create root user
All checks were successful
bundlewrap/pipeline/head This commit looks good
All checks were successful
bundlewrap/pipeline/head This commit looks good
This commit is contained in:
parent
b4122bf3f9
commit
0de62a0afa
1 changed files with 12 additions and 1 deletions
|
@ -1,4 +1,15 @@
|
||||||
postgres_roles = {}
|
pkg_apt = {
|
||||||
|
'postgresql-11': {},
|
||||||
|
'postgresql-client-11': {},
|
||||||
|
}
|
||||||
|
|
||||||
|
postgres_roles = {
|
||||||
|
'root': {
|
||||||
|
'password': repo.vault.password_for('{} postgresql root'.format(node.name)),
|
||||||
|
'superuser': True,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
postgres_dbs = {}
|
postgres_dbs = {}
|
||||||
|
|
||||||
for user, config in node.metadata['postgresql']['users'].items():
|
for user, config in node.metadata['postgresql']['users'].items():
|
||||||
|
|
Loading…
Reference in a new issue