This message was deleted.
# general
s
This message was deleted.
w
The typical approach is to do something like
prop: r.endpoint.apply(e => transform(e))
That is, use
apply
to compute the value to pass as an input to some resource, instead of creating the resource itself within the
apply
.
s
Ah, so I can use these transformed `Output`s in place of string parameters in my resources?
Yep, that worked. Thanks!
w
Yes - all inputs to resources are
Input<T>
which accepts a T or an Output<T>.