Skip to content

Commit a6b9bca

Browse files
fix: add missing SlackBotLambdaArn output for pr command
1 parent 96da357 commit a6b9bca

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
@@ -183,6 +183,11 @@ export class EpsAssistMeStack extends Stack {
183183
exportName: `${props.stackName}:lambda:SlackBot:ExecutionRole:Arn`
184184
})
185185

186+
new CfnOutput(this, "SlackBotLambdaArn", {
187+
value: functions.slackBotLambda.function.functionArn,
188+
exportName: `${props.stackName}:lambda:SlackBot:Arn`
189+
})
190+
186191
if (isPullRequest) {
187192
new CfnOutput(this, "VERSION_NUMBER", {
188193
value: props.version,

0 commit comments

Comments
 (0)