我有一个用Yaml编写的大型CloudFormation模板,我想开始使用Troposphere。有什么简单的方法可以将CF模板转换为对流层代码?
我在这里注意到这个脚本https://github.com/cloudtools/troposphere/blob/master/troposphere/template_generator.py
这将创建一个Troposphere python对象,但是我不确定是否有可能将其输出Troposphere代码。
最佳答案
您可以通过将CF YAML转换为JSON并运行传递JSON文件作为参数的https://github.com/cloudtools/troposphere/blob/master/scripts/cfn2py来实现。
关于amazon-cloudformation - 将CloudFormation模板(YAML)转换为对流层代码,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/56000464/