Retaining double-quotes in resulting file created from template

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"

Putting single quotes around should solve this.

host_ip = '"http://{{ ansible_default_ipv4.address }}"'

Regards,

  Uwe