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 Risposta
2
Risposta accettata

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.

ESPERTO
con risposta 9 mesi fa
profile picture
ESPERTO
verificato 3 giorni fa
profile picture
ESPERTO
verificato 2 mesi fa
  • Thank you for the Help

Accesso non effettuato. Accedi per postare una risposta.

Una buona risposta soddisfa chiaramente la domanda, fornisce un feedback costruttivo e incoraggia la crescita professionale del richiedente.

Linee guida per rispondere alle domande