taimos / cfn-tail

Tail for AWS CloudFormation stack events
MIT License
24 stars 6 forks source link

Tail for nested stacks #6

Open atkinsonm opened 5 years ago

atkinsonm commented 5 years ago

I commonly use nested stacks to strike a balance between modular code and built-in references and dependencies in CloudFormation templates. When using cfn-tail, only events on the AWS::CloudFormation::Stack resource will show. This is because CloudFormation shows the child stack's events under its own resource.

I'd like cfn-tail to recursively perform describeStackEvents calls if it detects an event.ResourceType === "AWS::CloudFormation::Stack".

atkinsonm commented 4 years ago

I submitted a feature request to AWS a while back requesting support for a way to show all nested stack events by querying the root stack. That would go a long way towards supporting this.