aws cloudformation create-stack --stack-name myteststack --template-body file:////home//local//test//sampletemplate.json
基于 AWS Cloud Formation 文档,我们可以使用 Nested Cloud Formation。但是,它只是说通过将模板 JSON 文件上传到 S3 存储桶来调用嵌套云形成模板。
还有其他方法可以通过嵌套云形成模板吗?类似的东西:(我猜..)
aws cloudformation create-stack --stack-name myteststack --template-body file:////home//local//test//main-template.json file:////home//local//test//nested-template.json
据我所知,此功能尚不可用。Cloudformation 解决了 AWS 端的嵌套依赖,例如
如果您给它一个本地文件作为 TemplateURL,AWS 将无法在服务器端解析此 TemplateURL。