Support Nested Stack
See original GitHub issueHi,
I have question. Does Troposphere support CF nested stack? Some thing like this post http://cloudacademy.com/blog/understanding-nested-cloudformation-stacks/?
{
"AWSTemplateFormatVersion": "2010-09-09",
"Resources": {
"ChildStack01": {
"Type": "AWS::CloudFormation::Stack",
"Properties": {
"TemplateURL": "https://s3.amazonaws.com/cloudformation-templates-us-east-1/VPC.template",
"TimeoutInMinutes": "60"
}
},
"ChildStack02": {
"Type": "AWS::CloudFormation::Stack",
"Properties": {
"TemplateURL": "https://s3.amazonaws.com/cloudformation-templates-us-east-1/Subnet.template",
"Parameters": {
"VpcId" : { "Fn::GetAtt" : [ "ChildStack01", "Outputs.VpcID" ] },
},
"TimeoutInMinutes": "60"
}
}
},
"Outputs": {
"StackRef": {
"Value": { "Ref": "ChildStack02" }
},
"OutputFromNestedStack": {
"Value": { "Fn::GetAtt": [ "ChildStack02", "Outputs.SubnetID" ]}
}
}
}
If yes, it’s great.
Issue Analytics
- State:
- Created 7 years ago
- Comments:8 (2 by maintainers)
Top Results From Across the Web
Working with nested stacks - AWS CloudFormation
Nested stacks are stacks created as part of other stacks. You create a nested stack within another stack by using the AWS::CloudFormation::Stack resource....
Read more >Use AWS CloudFormation with nested stacks - nClouds
AWS CloudFormation tutorial: Learn how to use dedicated AWS CloudFormation templates with common components to create nested stacks.
Read more >serverless-plugin-nested-stacks
Write your nested stacks as regular cloudformation and easily integrate them with the Serverless Framework! This plugin handles: Adding the appropriate AWS:: ...
Read more >SAM Accelerate support for nested stacks #3305 - GitHub
SAM CLI just launched SAM Accelerate, and this issue is to track adding support for nested stacks with sam sync --watch.
Read more >Do you use CloudFormation nested stack? : r/aws - Reddit
Using a nested stack for the VPC is wonderful because you can pass the ... This message of having to harangue AWS support...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@tammclaughlin I found this SO answer is useful.
Part of my cfn scripts are below:
Child stack 1 which has a useful resource.
Parent stack.
Child stack 2 which want to use a resource of child1.
It would be great to have an example in examples folder.