Guys, how is pulumi.interpolate meant to work? I a...
# general
d
Guys, how is pulumi.interpolate meant to work? I am invoking:
Copy code
const startupScript = pulumi.interpolate`
#!/usr/bin/env sh

echo ${something}`;
Where
something
is defined as:
Copy code
const something = config.requireSecret("mySecret");
But this fails with
Calling [toString] on an [Output<T>] is not supported.