Skip to content

Commit 125b265

Browse files
chore: add slack bot lambda name as a stack export
1 parent a433b95 commit 125b265

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

packages/cdk/stacks/EpsAssistMeStack.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,11 @@ export class EpsAssistMeStack extends Stack {
196196
exportName: `${props.stackName}:lambda:SlackBot:Arn`
197197
})
198198

199+
new CfnOutput(this, "SlackBotLambdaName", {
200+
value: functions.slackBotLambda.function.functionName,
201+
exportName: `${props.stackName}:lambda:SlackBot:FunctionName`
202+
})
203+
199204
if (isPullRequest) {
200205
new CfnOutput(this, "VERSION_NUMBER", {
201206
value: props.version,

0 commit comments

Comments
 (0)