@bowtie/sls
Version:
Serverless helpers & utilities
20 lines (16 loc) • 617 B
JavaScript
module.exports = {
text_max_length: 7975,
// Webhook URL to use to send Slack message(s)
webhook_url: process.env.SLACK_WEBHOOK,
// Toggle whether or not to send all stack change notifications
// - true: Send all stack change events (includes changes to each stack resource)
// - false: Only send stack changes to the parent stack
notify_all_changes: false,
// Default slack message payload
defaults: {
channel: process.env.SLACK_CHANNEL,
username: process.env.SLACK_USERNAME,
icon_url: process.env.SLACK_ICON_URL || null,
icon_emoji: process.env.SLACK_ICON_EMOJI || null
}
}