1
0
mirror of https://github.com/StackExchange/dnscontrol.git synced 2024-05-11 05:55:12 +00:00

25 lines
861 B
Markdown
Raw Normal View History

2017-01-11 13:02:45 -07: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-11 21:32:52 -04:00
The type must match a valid dns provider type identifier (see [provider page.]({{site.github.url}}/provider-list))
2017-01-11 13:02:45 -07: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-29 13:47:32 -05:00
var R53 = NewDnsProvider("r53", "ROUTE53");
2017-01-11 13:02:45 -07:00
2020-01-29 13:47:32 -05:00
D("example.com", REGISTRAR, DnsProvider(R53), A("@","1.2.3.4"));
2017-01-11 13:02:45 -07:00
{%endhighlight%}
2020-01-29 13:47:32 -05:00
{% include endExample.html %}