Djoby
Djoby

Reputation: 752

Access to Cloudformation stack output executed by code pipeline

I wish to access to the output of a CFN stack ran by a codepipeline. For that I understand that I need to add output artifacts to my action. But the data I get from that when I look in S3 is binary. How is it supposed to be decoded?

Upvotes: 1

Views: 194

Answers (1)

Marcin
Marcin

Reputation: 238139

But the data I get from that when I look in S3 is binary.

This is just a zip file without an extension. So you can un-zip it with any archiving program if you want to inspect its content. If you still struggle, manually add zip extension to it.

Upvotes: 1

Related Questions