mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2025-01-13 02:50:27 +08:00
e44dde52e2
* OVH DNS Provider (#143) This adds the OVH Provider along with its documentation. Unfortunately we can't set this DNS provider to support `CanUsePTR`, because OVH only supports setting PTR target on the Arpa zone. * OVH Registrar provider (#143) This implements OVH as a registrar provider. Note that NS modifications are done in a "best effort" mode, as the provider doesn't wait for the modifications to be fully applied (the operation that can take a long time). * Allow support for dual providers scenarios Since OVH released their APIv6, it is now possible to update zone apex NS records, opening the door to complete dual providers scenarii. This change implements apex NS management in an OVH zone.
20 lines
1.1 KiB
Go
20 lines
1.1 KiB
Go
//Package all is simply a container to reference all known provider implementations for easy import into other packages
|
|
package all
|
|
|
|
import (
|
|
//Define all known providers here. They should each register themselves with the providers package via init function.
|
|
_ "github.com/StackExchange/dnscontrol/providers/activedir"
|
|
_ "github.com/StackExchange/dnscontrol/providers/bind"
|
|
_ "github.com/StackExchange/dnscontrol/providers/cloudflare"
|
|
_ "github.com/StackExchange/dnscontrol/providers/digitalocean"
|
|
_ "github.com/StackExchange/dnscontrol/providers/dnsimple"
|
|
_ "github.com/StackExchange/dnscontrol/providers/gandi"
|
|
_ "github.com/StackExchange/dnscontrol/providers/gcloud"
|
|
_ "github.com/StackExchange/dnscontrol/providers/namecheap"
|
|
_ "github.com/StackExchange/dnscontrol/providers/namedotcom"
|
|
_ "github.com/StackExchange/dnscontrol/providers/ns1"
|
|
_ "github.com/StackExchange/dnscontrol/providers/ovh"
|
|
_ "github.com/StackExchange/dnscontrol/providers/route53"
|
|
_ "github.com/StackExchange/dnscontrol/providers/softlayer"
|
|
_ "github.com/StackExchange/dnscontrol/providers/vultr"
|
|
)
|