This message was deleted.
# general
s
This message was deleted.
g
getOutput("someKey")
return type is
pulumi.Output<any>
not
pulumi.Output<string>
. You could leave the variable untyped
const ip = ...
or also use an apply statement to provide the string type.
getOutput("someKey").apply(s => <string>s);
🙏 1
a
So this is indeed a documentation bug?
g
By the looks of it, yeah.
a
thx for confirming
🤙 1
s
I’ve filed https://github.com/pulumi/docs/issues/10342 to fix the documentation issue noted here.
🙏 1