Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

CloudFormation nested stack name

I need to set nested stack name explicitly in a CloudFormation template, but don't see such option in AWS documentation. Is there way to achieve this? I can specify stack name, when running a parent stack, but all nested stacks, got a randomly generated stack name, based on a resource name created, like:

VPC: Type: AWS::CloudFormation::Stack Properties: TemplateURL: https://s3-eu-west-1.amazonaws.com/cf-templates-wtmg/vpc.yaml Parameters: EnvironmentName: !Ref AWS::StackName

Which will generate nested stack name in form parent_stack_name-VPC-random_hash.

like image 471
Artem Dolobanko Avatar asked Jun 22 '17 11:06

Artem Dolobanko


1 Answers

Yes. I was looking for the same thing also but currently it's not available.

I think the reason of you wanted a specific stack name is to use it for output referral?

What you can do/I did was:

1) For those in the same parent stack, you need to output from nested stack and then refer directly from the stack like !GetAtt NestedStack1.Outputs.Output1

2) For those which are outside for parent stack, you will need to output twice. Once in the nested stack and once in the parent stack. Then you can refer to the parent stack output.

Hope this will help.

like image 148
Ryan Avatar answered Nov 15 '22 16:11

Ryan