Provides a NS1 DNS Zone resource. This can be used to create, modify, and delete zones.
# Create a new DNS zone
resource "ns1_zone" "example" {
zone = "terraform.example.io"
ttl = 600
}
The following arguments are supported:
zone - (Required) The domain name of the zone. link - (Optional) The target zone(domain name) to link to. ttl - (Optional) The SOA TTL. refresh - (Optional) The SOA Refresh. retry - (Optional) The SOA Retry. expiry - (Optional) The SOA Expiry. nx_ttl - (Optional) The SOA NX TTL. primary - (Optional) The primary zones' ip. This makes the zone a secondary.
© 2018 HashiCorpLicensed under the MPL 2.0 License.
https://www.terraform.io/docs/providers/ns1/r/zone.html