dnscontrol/docs/_functions/global/NewDnsProvider.md

25 lines
861 B
Markdown
Raw Normal View History

2017-01-12 04:02:45 +08:00
---
name: NewDnsProvider
parameters:
- name
- type
- meta
return: string
---
NewDnsProvider registers a new DNS Service Provider. The name can be any string value you would like to use.
2019-05-12 09:32:52 +08:00
The type must match a valid dns provider type identifier (see [provider page.]({{site.github.url}}/provider-list))
2017-01-12 04:02:45 +08:00
Metadata is an optional object, that will only be used by certain providers. See [individual provider docs]({{site.github.url}}/provider-list) for specific details.
This function will return the name as a string so that you may assign it to a variable to use inside [D](#D) directives.
{% include startExample.html %}
{% highlight js %}
var REGISTRAR = NewRegistrar("name.com", "NAMEDOTCOM");
2020-01-30 02:47:32 +08:00
var R53 = NewDnsProvider("r53", "ROUTE53");
2017-01-12 04:02:45 +08:00
2020-01-30 02:47:32 +08:00
D("example.com", REGISTRAR, DnsProvider(R53), A("@","1.2.3.4"));
2017-01-12 04:02:45 +08:00
{%endhighlight%}
2020-01-30 02:47:32 +08:00
{% include endExample.html %}