Returning the outputs from a CloudFormation template with Boto?

主宰稳场 提交于 2020-01-13 09:40:10

问题


I'm trying to retrieve the list of outputs from a CloudFormation template using Boto. I see in the docs there's an object named boto.cloudformation.stack.Output. But I think this is unimplemented functionality. Is this currently possible?


回答1:


If you do a describe_stacks call, it will return a list of Stack objects and each of those will have an outputs attribute which is a list of Output objects.

Is that what you are looking for?



来源:https://stackoverflow.com/questions/14163114/returning-the-outputs-from-a-cloudformation-template-with-boto

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!