Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(app-delivery): add parameters to deploy stack action
[PipelineDeployStackAction] is a construct for deploying cdk apps via CodePipeline but I couldn't figure out how to access pipeline artifacts in the application stack. The [app-delivery] readme includes a self-updating pipeline example but the service stacks don't use build artifacts. I added passthru props to PipelineDeployStackAction to set parameters for the created stacks, based on the pattern in [codepipeline example]. - Did I miss another way to pass build outputs to a stack? - What are the differences between [PipelineDeployStackAction] and [CloudFormationCreateUpdateStackAction]? [app-delivery]: https://docs.aws.amazon.com/cdk/api/latest/docs/app-delivery-readme.html [PipelineDeployStackAction]: https://docs.aws.amazon.com/cdk/api/latest/docs/@aws-cdk_app-delivery.PipelineDeployStackAction.html [CloudFormationCreateUpdateStackAction]: https://docs.aws.amazon.com/cdk/api/latest/docs/@aws-cdk_aws-codepipeline-actions.CloudFormationCreateUpdateStackAction.html [codepipeline example]: https://docs.aws.amazon.com/cdk/latest/guide/codepipeline_example.html
- Loading branch information