github.com/hexonet/dnscontrol@v0.2.8/docs/_functions/domain/NAMESERVER_TTL.md (about)

     1  ---
     2  name: NAMESERVER_TTL
     3  parameters:
     4    - ttl
     5  ---
     6  
     7  TTL sets the TTL on the domain apex NS RRs defined by [NAMESERVER](#NAMESERVER).
     8  
     9  The value can be an integer or a string. See [TTL](#TTL) for examples.
    10  
    11  {% include startExample.html %}
    12  {% highlight js %}
    13  
    14  D('example.com', REGISTRAR, DnsProvider('R53'),
    15    NAMESERVER_TTL('2d'),
    16    NAMESERVER('ns')
    17  );
    18  {%endhighlight%}
    19  {% include endExample.html %}