Hi, I am having an issue with pulumi.Output.json_dumps. I want to stop, at some arbitrary level of the python structure, the dump from continuing to interpret the strings I am supplying as json/yaml structured strings and treat them as opaque strings. How can I stop the parsing and let strings be strings in output ?
The application is that I want environment variables in an AWS task definition to remain as plain strings that the running container will read and parse. Instead of doing this of course it is rendering the valid yaml structure out of the plain string.
Thanks