subnet_range_end: "10.1.0.254"
 #Ip address of router used as a gateway to external network.
 router_addr: "10.1.0.1"
+#A list of dns resolvers for all instances
+dns_nameservers: []
 #Cidr of external subnet to allow access to, 0.0.0.0/0 means allow internet access.
 # For offline deployment it is recommended to set this to a cidr of intranet.
 external_subnet_cidr: ""
 
     type: string
     constraints:
       - custom_constraint: ip_addr
+  dns_nameservers:
+    label: "dns resolvers"
+    description: "List of dns resolvers"
+    type: comma_delimited_list
   public_network_name:
     label: "name of the public network"
     description: "Name of the public, internet facing network, also allowing access to company internal hosts"
       allocation_pools:
         - { start: { get_param: subnet_range_start }, end: { get_param: subnet_range_end } }
       gateway_ip: { get_param: router_addr }
+      dns_nameservers: { get_param: dns_nameservers }
       ip_version: 4
   #A port connected to the private network, taken by router.
   routerport:
 
       subnet_range_start: "{{ subnet_range_start }}"
       subnet_range_end: "{{ subnet_range_end }}"
       router_addr: "{{ router_addr }}"
+      dns_nameservers: "{{ dns_nameservers }}"
       auth_key: "{{ auth_public_key }}"
       image_name: "{{ image_name }}"
       node_flavor_name: "{{ node_flavor_name }}"