I need to setup a jinja2 template that does this...
"message":"{{ policy.message | default('{{message}}') }}"
If you don't provide anything to override the message, the json template should take a value of {{message}}.
I've tried a couple of things, but I can't seem to get it to work. It keeps returning this error...
'message' is undefined
Any ideas?