This repository was archived by the owner on Sep 20, 2023. It is now read-only.

Description
How to avoid potential security breach storing telegram token and channel id in config file/github?
'handlers': {
'telegram': {
'class': 'telegram_handler.TelegramHandler',
'formatter': 'telegram',
'token': 'your token',
'chat_id': 'chat id'
Is there a way to use environment variables or aws secret manager to avoid storing token/chat_id in config file?
Thank you