Report this

What is the reason for this report?

terraform: digitalocean_{domain/record} type NS

Posted on November 24, 2018

I am working to build my personal and professional infrastructure from the group up using Terraform on DigitalOcean.

The issue I am having is setting up my primary domain name. When created it automatically enters three NS records pointing to ns{1,2,3}.digitalocean.com which of course makes sense.

However I am trying to achieve vanity nameservers as outlined in this article: https://www.digitalocean.com/community/tutorials/how-to-create-vanity-or-branded-nameservers-with-digitalocean-cloud-servers

Here is the script attempting to modify ns1

resource "digitalocean_record" "ns" {
    domain = "${digitalocean_domain.domain.name}"
    type = "NS"
    name =  ""
    value = "ns1.${digitalocean_domain.domain.name}."
    ttl = "1800"
}

This fails due to the name being empty. Adding a value produces an undesired result.

I would like to either not have these entries entered if possible or edit/modify them.



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

Hey friend,

Great question! Our API does require the name field. We accept an “@” symbol as simply referring to the root domain.

Jarland

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.