Hello, does anyone know how to convert `Output<Str...
# general
s
Hello, does anyone know how to convert
Output<String>
to
string
? for example
Copy code
const eksClusterName = eksInfra.requireOutput("eksClusterName"); // This line returns Output<string>
pulumi.log.debug(eksClusterName) // How to let this line work?
t
In general case, it's not possible. In your example, you could use
requireOutputSync
instead, if your output is not a secret.
s
thanks
w