This message was deleted.
# python
s
This message was deleted.
e
That's a lambda expression, or anonymous function. Just a standard part of python, not pulumi specific: https://docs.python.org/3/reference/expressions.html#lambda
e
ah! thank you, this what i needed but couldn't find
s
You need these lambda expressions to kind of wait for resources being created. It is the method to cope with the async nature of resources who need a longer time being created.
1