forked from assertible/lambda-cloudwatch-slack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.js
34 lines (32 loc) · 1.17 KB
/
config.js
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
33
34
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: {
},
amplifyBuild: {
// text in the sns message or topicname to match on to process this service type
match_text: "Build notification from the AWS Amplify Console"
},
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"
}
}
}