jamieb
jamieb

Reputation: 10033

Returning the outputs from a CloudFormation template with Boto?

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?

Upvotes: 6

Views: 3988

Answers (1)

garnaat
garnaat

Reputation: 45856

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?

Upvotes: 7

Related Questions