Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 12 additions & 10 deletions config.js
Original file line number Diff line number Diff line change
@@ -1,30 +1,32 @@
module.exports = {
kmsEncryptedHookUrl: process.env.KMS_ENCRYPTED_HOOK_URL, // encrypted slack webhook url
unencryptedHookUrl: process.env.UNENCRYPTED_HOOK_URL, // unencrypted 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: {
match_text: 'ElasticBeanstalkNotifications'
},
cloudwatch: {},
codepipeline: {
// text in the sns message or topicname to match on to process this service type
match_text: "CodePipelineNotifications"
match_text: 'CodePipelineNotifications'
},
codedeploy: {
// text in the sns message or topicname to match on to process this service type
match_text: "CodeDeploy"
match_text: 'CodeDeploy'
},
elasticache: {
// text in the sns message or topicname to match on to process this service type
match_text: "ElastiCache"
match_text: 'ElastiCache'
},
autoscaling: {
// text in the sns message or topicname to match on to process this service type
match_text: "AutoScaling"
match_text: 'AutoScaling'
},
glue: {
// text in the sns message or topicname to match on to process this service type
match_text: 'Glue'
}
}

}
}
Loading