A construct library for creating AWS Budgets Notification to Slack with the AWS CDK.
This construct creating resource list.
- SNS Topic
- ChatBot SlackChannelConfiguration
- Budgets (linked account count or self)
npm install @gammarers/aws-budgets-notification
# or
yarn add @gammarers/aws-budgets-notification
pip install gammarers.aws-budgets-notification
dotnet add package Gammarers.CDK.AWS.BudgetNotification
import { BudgetsNotification } from '@gammarers/aws-budgets-notification';
new BudgetsNotification(stack, 'BudgetsNotification', {
slackWorkspaceId: 'T0XXXX111', // already AWS account linked your Slack.
slackChannelId: 'XXXXXXXX', // already created your slack channel.
budgetLimitAmount: 50,
// optional linked account list
linkedAccounts: [
'111111111111',
'222222222222',
],
});
This project is licensed under the Apache-2.0 License.