@wisegpt/awscdk-slack-event-bus
v1.1.0
Published
Exposes a Slack Events API Request URL that validates and sends all received events to an AWS Event Bus
Downloads
120
Maintainers
Readme
@wisegpt/awscdk-slack-event-bus
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>>";
// !IMPORTANT! you should reference `Secret` more securely, e.g. by using `Secret.fromSecretCompleteArn()`
const secret = new Secret(this, "WiseGPTSecrets", {
secretObjectValue: {
[`app/${appId}/signing-secret`]: SecretValue.unsafePlainText("<<your-slack-signing-secret>>"),
},
});
const slackEventBus = new SlackEventBus(this, "SlackEventBus", { secret });
// ... use slackEventBus.eventBus to create rules to listen for events or do something else
// Copy the output from the CLI or CloudFormation to enable Slack Events API
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 ascom.slack
- Only
event_callback
andapp_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 theevent_time
of the Slack Event - The
DetailType
of the EventBus Event is set toEventCallback.{event.type}
e.g. forapp_mention
,DetailType
isEventCallback.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', ... }, ... }
thetoken
field you would normally get from the Slack Event is omitted for security measure.
- The
- Extra Information on
app_rate_limited
type of events:- The
Time
of the EventBus Event is set to theminute_rate_limited
of the Slack Event - The
DetailType
of the EventBus Event is set to fixedAppRateLimited
- 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.
- The