This message was deleted.
# golang
s
This message was deleted.
e
You can but it's not exactly safe: https://pkg.go.dev/github.com/pulumi/pulumi/sdk/v3@v3.53.1/go/pulumi/internals#UnsafeAwaitOutput You should generally just put the code that needs the value inside the Apply call, but if that really can't be done use the above, just be aware your opting out of all the normal output management that the SDK normally does for you
g
I understand the value of the output management, but considering I’m only working with known types and only need to build a Pulumi DAG after the fact, this trade-off is a good deal. Thank you very much!