I'd like to set "Override Local DNS", which looks like this in the webui: <img width="692" alt="Screenshot 2024-10-19 at 4 18 37 PM" src="https://github.com/user-attachments/assets/de5a53c2-0ef1-48ca-ab88-525258f6557d"> I would assume a config like this could work: ```terraform resource "tailscale_dns_nameservers" "nameservers" { override_local_dns = true nameservers = [ "8.8.8.8", "1.1.1.1", ] } ```