Franziska Kunsmann
6cd02dc563
Some checks failed
bundlewrap/pipeline/head There was a failure building this commit
29 lines
985 B
Python
29 lines
985 B
Python
defaults = {
|
|
'matrix-synapse': {
|
|
'appservice_configs': {
|
|
'/opt/mx-puppet-discord/registration.yaml',
|
|
},
|
|
},
|
|
'mx-puppet-discord': {
|
|
'database': {
|
|
'user': 'mx-puppet-discord',
|
|
'password': repo.vault.password_for('{} postgresql mx-puppet-discord'.format(node.name)),
|
|
'database': 'mx-puppet-discord',
|
|
},
|
|
'as_token': repo.vault.password_for('{} mx-puppet-discord as_token'.format(node.name)),
|
|
'hs_token': repo.vault.password_for('{} mx-puppet-discord hs_token'.format(node.name)),
|
|
'sender_localpart': '_discordpuppet_bot',
|
|
},
|
|
'postgresql': {
|
|
'roles': {
|
|
'mx-puppet-discord': {
|
|
'password': repo.vault.password_for('{} postgresql mx-puppet-discord'.format(node.name)),
|
|
},
|
|
},
|
|
'databases': {
|
|
'mx-puppet-discord': {
|
|
'owner': 'mx-puppet-discord',
|
|
},
|
|
},
|
|
},
|
|
}
|