Skip to content

neilkuan/cdk-events-notify

Repository files navigation

NPM version PyPI version Release

Downloads npm PyPI

cdk-events-notify

cdk-events-notify is an AWS CDK Construct Library that provides you know who login in your aws console.

Why

It's just a small feature at the moment, Provides you to trigger Lambda Function push notifications to Slack when you discover Console Login event or switch role event through Cloudtrail.

Welcome to contribute another event notify case you want.

Overview

Now support

Breaking Change: Line Notify support has been removed since #2663. Line Notify service was officially shut down by LINE on 2025-03-31, so this library now supports Slack only. If you need Line Notify functionality, please pin to a version prior to this change.

You need enable one Management events in your account.

more see https://aws.amazon.com/tw/cloudtrail/pricing/

Install

// for CDKv2
npm install cdk-events-notify
or
npm install cdk-events-notify@latest 

Usage

import * as cdk from 'aws-cdk-lib';
import { EventNotify } from 'cdk-events-notify';

const app = new cdk.App();
const stack = new cdk.Stack(app, 'integ-stack', { env });
new EventNotify(stack, 'SlackEventNotify', {
  slack: {
    slackChannelName: 'your-channel-name',
    slackWebhookUrl: 'https://hooks.slack.com/services/xxx/xxx/xxx',
  },
});

To deploy

cdk deploy

To destroy

cdk destroy

Finally

  • slack

More about EventBridge and Lambda

Note: Event Bridge can not cross region , if you console sign in not the cdk-events-notify region will not get the evnet in cloudtrail see this docs

👏 Supporters

Stargazers repo roster for @neilkuan/cdk-events-notify Forkers repo roster for @neilkuan/cdk-events-notify

About

Provides you to trigger Lambda Function push notifications Slack when you discover Console Login event or switch role event through Cloudtrail.

Topics

Resources

License

Stars

Watchers

Forks

Sponsor this project

Packages

 
 
 

Contributors