@wisegpt/awscdk-slack-event-bus
API ·
Changelog
This library was created to fulfill the need of integrating Slack as a Event Source for AWS EventBridge.
Architecture
- Creates an EventBus to send all Slack events to
- Creates or uses an already existing AWS HTTP API Gateway for exposing Slack Events API Request URL
- Creates an AWS Lambda and adds it to the AWS HTTP API Gateway to be used as Slack Events API Request URL
- Lambda validates the Signature of each received event
- Lambda responds to
url_verification
which is received when Slack App is configured with the Request URL - Lambda sends all received events to the created EventBus
- Can be used with a single Slack application or with multiple (by default).
API Reference
See API.md for documentation of the SlackEventBus
construct.
Example Usage
import { CfnOutput, Stack, StackProps, SecretValue } from "aws-cdk-lib";
import { Secret } from "aws-cdk-lib/aws-secretsmanager";
import { Construct } from "constructs";
import { SlackEventBus } from "@wisegpt/awscdk-slack-event-bus";
export class MyExampleStack extends Stack {
constructor(scope: Construct, id: string, props: StackProps = {}) {
super(scope, id, props);
const appId = "<<your-slack-app-id>>";
const secret = new Secret(this, "WiseGPTSecrets", {
secretObjectValue: {
[`app/${appId}/signing-secret`]: SecretValue.unsafePlainText("<<your-slack-signing-secret>>"),
},
});
const slackEventBus = new SlackEventBus(this, "SlackEventBus", { secret });
new CfnOutput(this, "SlackEventRequestUrl", {
value: slackEventBus.slackEventsRequestUrl(appId),
description: "Slack Events Request Url to use in Slack API Dashboard",
});
}
}
Event Mapping Detail
Received events are sent to the EventBus without any modification to their format. Some mapping from Slack Event to EventBridge Events is done to be able to put the event to the EventBus. Details are as follows;
- All events put to the EventBus have
source
field as com.slack
- Only
event_callback
and app_rate_limited
type of events are sent to the EventBus. - Extra Information on
event_callback
type of events:
- The
Time
of the EventBus Event is set to the event_time
of the Slack Event - The
DetailType
of the EventBus Event is set to EventCallback.{event.type}
e.g. for app_mention
, DetailType
is EventCallback.app_mention
- The
Detail
of the EventBus Event is set to the whole Event envelope that Slack has sent. E.g. { type: 'event_callback', event: { type: 'app_mention', ... }, ... }
the token
field you would normally get from the Slack Event is omitted for security measure.
- Extra Information on
app_rate_limited
type of events:
- The
Time
of the EventBus Event is set to the minute_rate_limited
of the Slack Event - The
DetailType
of the EventBus Event is set to fixed AppRateLimited
- The
Detail
of the EventBus Event is set to the whole Event envelope that Slack has sent. E.g. { type: 'app_rate_limited', api_app_id: ..., }
again, token
is omitted for safety measure.