We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96da357 commit a6b9bcaCopy full SHA for a6b9bca
packages/cdk/stacks/EpsAssistMeStack.ts
@@ -183,6 +183,11 @@ export class EpsAssistMeStack extends Stack {
183
exportName: `${props.stackName}:lambda:SlackBot:ExecutionRole:Arn`
184
})
185
186
+ new CfnOutput(this, "SlackBotLambdaArn", {
187
+ value: functions.slackBotLambda.function.functionArn,
188
+ exportName: `${props.stackName}:lambda:SlackBot:Arn`
189
+ })
190
+
191
if (isPullRequest) {
192
new CfnOutput(this, "VERSION_NUMBER", {
193
value: props.version,
0 commit comments