This message was deleted.
# typescript
s
This message was deleted.
g
Yep, you should be able to wrap the input using the
pulumi.output()
function.
Copy code
const myStringInput = 'foo';
const myStringOutput = pulumi.output(myStringInput);
g
doh! I was using
pulumi.Output(myStringInput)
thanks!
👍 1
g
(
Output
is the type,
output
is the function)
👍 1