<@UB3BGTV63> I'm starting to use pulumi with AWS C...
# general
h
@white-balloon-205 I'm starting to use pulumi with AWS CodeBuild, which is basically a glorified bash prompt running in a container. How can i bring all that work into my pulumi script? E.g, building docker images, getting configuration, running arbitrary shell commands, etc.? How would I integrate that with Pulumi's "preview" vs. "live" run?
👍 1
👕 1
c
Typically you would write some small Bash script to download the Pulumi client and then run ‘pulumi update’ in the right directory. We have some reference documentation on pulumi.io for integrating with some CI systems. Happy to answer any other questions you have though.
... or run ‘pulumi preview’ to see the changes that would be made.
a
Answering your question now!