Setup pipeline stage slack notifications to send to specific slack channels (pipeline with multiple stages)

0

Is it possible to have slack notifications for a pipeline with multiple stages, where each stage sends notifications to a specific slack channel? Using the aws-cdk-lib/pipelines package.

1 回答
0

Yes, it is possible to configure a CDK pipeline with multiple stages to send notifications to different Slack channels for each stage.

Here is an example of how you can do it in CDK:

const pipeline = new pipelines.CdkPipeline(this, 'Pipeline', {
  pipelineName: 'MyAppPipeline',
  
  stages: [
    {
      stageName: 'Source',
      actions: [/* source actions */],
      notifications: [
        new pipelines.SlackApproval(this, 'SourceSlackApproval', {
          notificationTopic: new sns.Topic(this, 'SourceTopic'),
          slackChannel: 'source-updates' 
        })  
      ]
    },
    {
      stageName: 'Build',
      actions: [/* build actions */], 
      notifications: [
        new pipelines.SlackApproval(this, 'BuildSlackApproval', {
          notificationTopic: new sns.Topic(this, 'BuildTopic'),
          slackChannel: 'build-notifications'
        })
      ]
    }
  ]
});

// Create SNS topic subscriptions
pipeline.stages[0].notifications[0].notificationTopic.subscribeUrl('https://hooks.slack.com/...'); 

pipeline.stages[1].notifications[0].notificationTopic.subscribeUrl('https://hooks.slack.com/...');

The key points:

  • Each stage can define its own notifications array with a SlackApproval

  • The SlackApproval is configured with a different SNS topic and slackChannel per stage

  • The SNS topics are then subscribed to separate Slack webhook URLs

This allows full customization of notifications for each stage in a CDK pipeline. The same approach could also be used for sending emails, PagerDuty alerts etc. per stage.

AWS
Saad
已回答 4 个月前
  • Thanks for taking the time to answer. I'm new to CDK, but your sample looks to be CDK v1 related. I'm using v2. Maybe I'm not looking in the docs correctly, but where does SlackApproval come from? I don't see it anywhere in v1 or v2 docs.

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则