This message was deleted.
s
This message was deleted.
h
if you're redirecting to a file in powershell it encodes it by default using UTF-16, which is probably one of the more brain-damaged decisions powershell made. Try something like
pulumi stack export | out-file urfilename.json -encoding ascii
a
That does the trick. Thanks!
👍 1