Can a "magic function" refer to pulumi.Output valu...
# aws
h
Can a "magic function" refer to pulumi.Output values at runtime via the`get()` method or will they be undefined? Thread follows.
Context is I'm defining a lambda that launches an ECS task, and it needs to use configuration (security groups and subnets) defined during deployment.
So if I my Lambda captures value
sgs
with type`pulumi.Output<string[]>`, will
sgs.get()
give me that array of strings when the lambda executes?