I have a template that does has this line
host_ip = "http://{{ ansible_default_ipv4.address }}"
which results into a line in the dest file that has, for example
`
host_ip = http://10.10.10.10
`
However, how do modify the template so I retain the “” in the resulting file, so it looks like this
host_ip = "http://10.10.10.10"