Written on February 10, 2021 by Danny Steenman. The AWS CDK Pipelines is a higher level https://docs.aws.amazon.com/cdk/api/latest/docs/@aws-cdk_pipelines.CdkPipeline.html that creates a customized AWS Codepipeline specifically for deploying CDK stacks on AWS Accounts and automatically manages the following: Stack dependency order.

The following https://docs.aws.amazon.com/cdk/latest/guide/cdk_pipeline.html from the AWS docs helps you with setting up an AWS CDK Pipeline. The default CDK Pipeline contains example code to deploy a stack on a single stage. But if you have multiple test accounts, then it would be nice to add them to the same stage in AWS CDK Pipeline.

Related Articles