mirror of
https://github.com/alerta/alerta.git
synced 2025-01-24 17:29:39 +00:00
32 lines
930 B
Text
32 lines
930 B
Text
# DEBUG=True
|
|
LOG_LEVEL='INFO'
|
|
BASE_URL='http://mom2.local.alerta.io:9002'
|
|
DATABASE_URL='postgres:///mom2'
|
|
PLUGINS=['forwarder']
|
|
PLUGINS_RAISE_ON_ERROR=True
|
|
|
|
HMAC_AUTH_CREDENTIALS = [
|
|
{ # mom1
|
|
'key': 'c075b86b-293c-4539-b825-14ec0130f06d',
|
|
'secret': 'YzQ4OTVhNWE2ZTFmMGUzZmU1ODE2ZTE0N2M0OWZmZTAK',
|
|
'algorithm': 'sha256'
|
|
},
|
|
{ # mlm1
|
|
'key': '95ce8df0-9380-4e12-afc0-c21cb21ee4af',
|
|
'secret': 'NmI2OWU0ZmZiMzk5ODVlZTY2OGU4OWI4NThhYWY5Y2EK',
|
|
'algorithm': 'sha256'
|
|
},
|
|
{ # mlm2
|
|
'key': '57814c53-d92d-4706-b1e3-3c8377f4cf03',
|
|
'secret': 'ZDg3Yjg0MTM2ODJkZDgyNzE3MjE5MzFlYTdiYzI0YzQK',
|
|
'algorithm': 'sha256'
|
|
},
|
|
]
|
|
|
|
FWD_DESTINATIONS = [
|
|
(
|
|
'http://mom1.local.alerta.io:9001',
|
|
{'key': '27c1fe05-d7aa-4982-9e16-3936bc7ea504', 'secret': 'ZGE1YWUwZWFiMmYxNDVjZTkwNWE4ZWY2ZWE4YmNkZTEK'},
|
|
['alerts', 'actions']
|
|
),
|
|
]
|