mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2025-09-10 07:05:31 +08:00
387 B
387 B
name | parameters | parameter_types | |||
---|---|---|---|---|---|
INCLUDE |
|
|
Includes all records from a given domain
{% code title="dnsconfig.js" %}
D("example.com!external", REGISTRAR, DnsProvider(R53),
A("test", "8.8.8.8")
);
D("example.com!internal", REGISTRAR, DnsProvider(R53),
INCLUDE("example.com!external"),
A("home", "127.0.0.1")
);
{% endcode %}