CloudFormation Nested Stack From Codecommit in a CodePipeline

0

How to implement Nested Stack files in one CodeCommit repository and use CodeDeploy in CodePipeline for deployment,

CodeCommit FileStructure Storage-Stack.yaml Backend-Stack.yaml Parent-Stack.yaml

how do we include the URL of the File from the Source Artifcat

1 Answer
1
Accepted Answer

You can use a CodePipeline Deploy stage that uses CloudFromation Stacks as the deployment provider, which should be easier than using CodeDeploy.

Before the Deploy stage, create Build stage that has a CLI command like: aws cloudformation package --template-file $TemplateName.yaml --s3-bucket $S3Bucket --s3-prefix $S3BuildsPrefix --output-template-file packaged-template.yaml

This allows your parent template to refer to nested stacks as relative paths in your source tree, and "cloudformation package" resolves these by uploading dependencies to S3 and changing references in your template to refer to them. It can deal with many types of dependencies - have a look at https://docs.aws.amazon.com/cli/latest/reference/cloudformation/package.html.

EXPERT
answered 8 months ago
profile picture
EXPERT
reviewed a month ago
  • Thank you for the Help

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions