bundlewrap/bundles/mx-puppet-discord/metadata.py
Franzi 0784b85fbb
All checks were successful
bundlewrap/pipeline/head This commit looks good
bundles/mx-puppet-discord: create registration.yaml using bw
2020-09-26 15:34:12 +02:00

36 lines
1.1 KiB
Python

defaults = {
'users': {
'mx-puppet-discord': {
'home': '/opt/mx-puppet-discord',
'home-mode': '0755',
},
},
'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': {
'users': {
'mx-puppet-discord': {
'password': repo.vault.password_for('{} postgresql mx-puppet-discord'.format(node.name)),
},
},
'databases': {
'mx-puppet-discord': {
'owner': 'mx-puppet-discord',
},
},
},
}