-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathconfig.py
More file actions
20 lines (18 loc) · 853 Bytes
/
config.py
File metadata and controls
20 lines (18 loc) · 853 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
config = {
"webhook_token": '<incoming webhook integration token>',
"sqs_token": '<amazon sqs integration token>',
"aws_access_key": '<with sqs permissions>',
"aws_secret_key": '<with sqs permissions>',
"username": '<bot name>',
"icon_url": 'https://slack-assets2.s3-us-west-2.amazonaws.com/10068/img/slackbot_192.png',
"domain": '<yourdomain.slack.com>',
"queue": '<sqs queue name>',
# stackdriver plugin
"stackdriver_username": 'stackdriver',
"stackdriver_channel": '#monitoring',
"stackdriver_icon": 'https://fbcdn-profile-a.akamaihd.net/hprofile-ak-xaf1/t1.0-1/p160x160/417293_271031206332030_738543521_n.jpg',
"stackdriver_sns_topic": 'arn:aws:sns:us-east-1:<aws account id>:<sns topic name>',
# jira plugin
"jira_username": '<jira username>',
"jira_password": '<jira password>',
}