Hey, quick question, how do I get a `pulumi.String...
# golang
e
Hey, quick question, how do I get a
pulumi.String
from a
pulumi.StringOutput
? (get the value of
pulumi.StringOutput
which is private) I’m trying to put together a policy statement with functions and the
pulumi.StringOutput
is giving me a headache.
c
did try to use
pulumi.Sprintf
? it allows you to use format strings with
pulumi.StringOutput
and
pulumi.String
e
Yes, I already tried to work with it but i still cannot get the string out of the
StringOutput
struct