Is anyone running their Pulumi stack in something ...
# general
m
Is anyone running their Pulumi stack in something like AWS Lambda? As in,
index.ts
of Pulumi is actually a function and I can trigger it from all the usual lambda sources?
b
I think you would need to use Automation API to accomplish this, and since that still depends on the Pulumi CLI you'll probably need to use a Lambda container for your function that has the CLI installed
🙌 1
But it should be doable now
Something that occurs to me, serverless functions tend to have moderate to strict timeout constraints so you'll want to make sure that isn't an issue
m
ooh, good point
Thank you for this and the pointer to automation API