A python library to send cloudwatch alarm events from sns to slack
A python library to send cloudwatch alarm notifications to Slack.
pip install cloudwatch_alarm_to_slack
from cloudwatch_alarm_to_slack.entrypoint import CloudwatchAlarmNotifier
def lambda_handler(event, context):
CloudwatchAlarmNotifier.handle_event(event)
It is required the following environment variable be set:
SLACK_BOT_TOKEN
: Bot token of the slack app which should have the chat:write
permissions.SLACK_CHANNEL
: ID of the Slack channel to which notification should be sent to.If there is another usecase, please open an issue and let me know :)