-
Hi All, I've tried to find these answers myself and asked a few of the GPT tools out there but can't really conclude for sure.
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
There would need to be some way to hint to cfn-lint what local file should be used as the template for the nested stack, since there's no real connection between local file structure of templates and the relationship of stacks. The |
Beta Was this translation helpful? Give feedback.
-
This rule tries to validate parameters to a nested template but @farski is correct. The big problem here is that we need to have a location to find the file. We don't try to read templates from S3/HTTPS but if you are using the CloudFormation package command the |
Beta Was this translation helpful? Give feedback.
There would need to be some way to hint to cfn-lint what local file should be used as the template for the nested stack, since there's no real connection between local file structure of templates and the relationship of stacks. The
TemplateURL
of a stack resource is always a full S3 URL, not a relative path that could, even by default, be assumed to be the same as the local file system.