forked from assertible/lambda-cloudwatch-slack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.js
More file actions
32 lines (31 loc) · 1.1 KB
/
Copy pathconfig.js
File metadata and controls
32 lines (31 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
module.exports = {
kmsEncryptedHookUrl: process.env.KMS_ENCRYPTED_HOOK_URL, // encrypted slack webhook url
unencryptedHookUrl: process.env.UNENCRYPTED_HOOK_URL, // unencrypted slack webhook url
services: {
elasticbeanstalk: {
// text in the sns message or topicname to match on to process this service type
match_text: 'ElasticBeanstalkNotifications'
},
cloudwatch: {},
codepipeline: {
// text in the sns message or topicname to match on to process this service type
match_text: 'CodePipelineNotifications'
},
codedeploy: {
// text in the sns message or topicname to match on to process this service type
match_text: 'CodeDeploy'
},
elasticache: {
// text in the sns message or topicname to match on to process this service type
match_text: 'ElastiCache'
},
autoscaling: {
// text in the sns message or topicname to match on to process this service type
match_text: 'AutoScaling'
},
glue: {
// text in the sns message or topicname to match on to process this service type
match_text: 'Glue'
}
}
}