skip to Main Content

AWS Cloudformation nested stack deployment template path

I'm trying to deploy nested stack using command aws cloudformation deploy --stack-name "${STACK_NAME}" --template-file "${S3_ROOT_TEMPLATE}" --parameter-overrides ${PARAMS[@]} --region ${REGION} But despite the S3_ROOT_TEMPLATE having proper url, I get the error Invalid template path https://<s3-bucket-name>.s3.us-east-2.amazonaws.com/sm-domain-templates/main_stack.yaml Any idea what's wrong with the…

VIEW QUESTION

CloudFormation Dynamic Reference To Secret In Different Region

I created a secret in us-east-1 region. I am able to dynamically reference the secret in CloudFormation stack template deployed to region us-east-1. The command in template looks something like {{resolve:secretsmanager:arn:aws:secretsmanager:us-east-1:<accountId>:secret:<secretName>:SecretString:<secretKey>::}} I have another stack template being deployed to region…

VIEW QUESTION
Back To Top
Search