i'm looking for a way to create an AWS Lambda arch...
# python
a
i'm looking for a way to create an AWS Lambda archive with dependencies, every time i run
pulumi up
. Is there a resource which will run a bash script or something, so that
pulumi.FileArchive
could run after?
l
You can directly call
child_process.execSync("zip ... ...")
a
oh! i keep forgetting i'm actually dealing with Python, while writing IaC... thx
Ah! yes, sorry that was for typescript but you get the picture
👍 1