1## template:jinja
2# Your system has been configured with 'manage-resolv-conf' set to true.
3# As a result, cloud-init has written this file with configuration data
4# that it has been provided. Cloud-init, by default, will write this file
5# a single time (PER_ONCE).
6#
7[Resolve]
8LLMNR=false
9{% if nameservers is defined %}
10DNS={% for server in nameservers %}{{server}} {% endfor %}
11{% endif %}
12
13{% if searchdomains is defined %}
14Domains={% for search in searchdomains %}{{search}} {% endfor %}
15{% endif %}
16