github.com/StackExchange/dnscontrol/v4@v4.11.0/documentation/language-reference/domain-modifiers/AAAA.md (about) 1 --- 2 name: AAAA 3 parameters: 4 - name 5 - address 6 - modifiers... 7 parameter_types: 8 name: string 9 address: string 10 "modifiers...": RecordModifier[] 11 --- 12 13 AAAA adds an AAAA record To a domain. The name should be the relative label for the record. Use `@` for the domain apex. 14 15 The address should be an IPv6 address as a string. 16 17 Modifiers can be any number of [record modifiers](https://docs.dnscontrol.org/language-reference/record-modifiers) or JSON objects, which will be merged into the record's metadata. 18 19 {% code title="dnsconfig.js" %} 20 ```javascript 21 var addrV6 = "2001:0db8:85a3:0000:0000:8a2e:0370:7334" 22 23 D("example.com", REG_MY_PROVIDER, DnsProvider(DSP_MY_PROVIDER), 24 AAAA("@", addrV6), 25 AAAA("foo", addrV6), 26 AAAA("test.foo", addrV6, TTL(5000)), 27 AAAA("*", addrV6, {foo: 42}), 28 END); 29 ``` 30 {% endcode %}