This message was deleted.
# general
s
This message was deleted.
b
can you show an example of what you've tried? There are some examples here which may help https://github.com/pulumi/examples/search?l=Python&q=apply
m
Sure, using a Kubernetes Helm chart as an example, I want to inspect what is inside of
chart.resources
. Printing it directly produces
<pulumi.output.Output object at 0x1112b8e10>
and doing a basic
apply
with a lambda that just returns the value also produces the same result.
For additional context, the chart creates a couple of custom resources that have unique and random names. I need to retrieve these names in order to configure another object. I’m hoping something in
chart.resources
will help with that.