Hello. Is there any way to console.log `pulumi.out...
# general
m
Hello. Is there any way to console.log
pulumi.output
? I’m catching strange behaviour very often and there is no way to debug stacks.
l
<http://pulumi.log.info|pulumi.log.info>()
,
pulumi.log.debug()
, etc.
w
Also - you can
out.apply(console.log)
. That will run the log once the value is available (after the resources it depends on have been created/updated).
❤️ 1