sparse-intern-71089
08/28/2023, 6:03 PMbillowy-army-68599
thankful-controller-17230
09/28/2023, 3:37 PMInput
of something_else()
use an Output
of app_hostname
… if it’s not a direct attribute/`Output` then use .apply()
something like:
something_else(
ip_addrs = [
app_hostname.status.apply(lambda x: x.load_balancer.ingress[0].hostname),
],
)
the depends_on
will be inferred by pulumi b/c of the Output
to Input
relationship