This message was deleted.
# typescript
s
This message was deleted.
e
Don't use
JSON.stringify
, use
Output.jsonStringify
it will handle the nested output values for you.
f
Do you mean here?
Copy code
Resource: [
  sqsQueue1.sqs.arn.apply(v => JSON.stringify(v)),
],
e
No I mean:
Copy code
listOfStatements: JSON.stringify({
=>
Copy code
listOfStatements: pulumi.output.jsonStringify({
I always forget this is on the module not the type 🤦
f
After the change I got this:
e
If you get rid of
ouput
? Just
pulumi.jsonStringify
?
Sorry trying to keep all the language libraries in my head gets in a bit of a muddle about where things are defined sometimes 😆
f
That worked! Thank you! 🙂
🙌 1