I have a variable set in an encrypted ansible vault yaml file which has multiple special characters, including < { , " ' [ and %.
my_var: <X%X[X{,"<X'L
I need Ansible to take the variable as a raw string, but it's inserting a \ before the double-quote (") - at least that is what debug shows.
ok: [10.10.10.10] => {
"my_var": "<X%X[X{,\"<X'L"
}
How can I get ansible to treat the variable as a raw string?