Anyone who can verify if aws step functions is sup...
# aws
c
Anyone who can verify if aws step functions is supported now? Thanks!
b
They are. There's an example here
c
Thanks, but any example using python?
b
There's a whole blog post on that very subject https://www.pulumi.com/blog/intro-to-step-functions/
👍 1
c
To get the lambda function arn, it uses 'apply' function, but when there are multiple lambda functions, do I need to use layered 'apply' for all functions? I tried several different ways, but they don't seem to be working.
b
So you probably want to use
pulumi.all
instead. The python example doesn't use that, but you should get a good idea from the typescript example
The docs show how to use
all
in python
c
For those who are curious about this,
Copy code
Output.all(hello_world_fn.arn,nice_fn.arn).apply(lambda args: ...)
https://www.pulumi.com/blog/intro-to-step-functions/