Hi all. Is it possible to run code in the same co...
# general
g
Hi all. Is it possible to run code in the same context that lambda code runs in except in a local environment? What I mean by that is you are able to access properties on pulumi resources at runtime in a lambda by calling
.get()
. If I want to achieve the same thing locally how can I go about it. The main use case is for writing integration tests against the infra. It would be great to be able to reference all these resources in the tests the same way you do in the lambda runtime.