mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2024-05-11 05:55:12 +00:00
* 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.
77 lines
1.9 KiB
JSON
77 lines
1.9 KiB
JSON
{
|
|
"ACTIVEDIRECTORY_PS": {
|
|
"ADServer": "$AD_SERVER",
|
|
"domain": "$AD_DOMAIN",
|
|
"knownFailures": "17,18,19,25,26,27,28,29,30"
|
|
},
|
|
"BIND": {
|
|
"domain": "example.com"
|
|
},
|
|
"CLOUDFLAREAPI": {
|
|
"apikey": "$CF_KEY",
|
|
"apiuser": "$CF_USER",
|
|
"domain": "$CF_DOMAIN"
|
|
},
|
|
"DIGITALOCEAN": {
|
|
"token": "$DO_TOKEN",
|
|
"domain": "$DO_DOMAIN"
|
|
},
|
|
"DNSIMPLE": {
|
|
"COMMENT": "16/17: no ns records managable. Not even for subdomains.",
|
|
"baseurl": "https://api.sandbox.dnsimple.com",
|
|
"domain": "$DNSIMPLE_DOMAIN",
|
|
"knownFailures": "18,19,20",
|
|
"token": "$DNSIMPLE_TOKEN"
|
|
},
|
|
"GANDI": {
|
|
"COMMENT": "5: gandi does not accept TTLs less than 300",
|
|
"apikey": "$GANDI_KEY",
|
|
"domain": "$GANDI_DOMAIN",
|
|
"knownFailures": "5"
|
|
},
|
|
"GCLOUD": {
|
|
"type": "$GCLOUD_TYPE",
|
|
"client_email": "$GCLOUD_EMAIL",
|
|
"domain": "$GCLOUD_DOMAIN",
|
|
"private_key": "$GCLOUD_PRIVATEKEY",
|
|
"project_id": "$GCLOUD_PROJECT"
|
|
},
|
|
"NS1": {
|
|
"domain": "$NS1_DOMAIN",
|
|
"api_token": "$NS1_TOKEN"
|
|
},
|
|
"NAMEDOTCOM": {
|
|
"apikey": "$NAMEDOTCOM_KEY",
|
|
"apiurl": "$NAMEDOTCOM_URL",
|
|
"apiuser": "$NAMEDOTCOM_USER",
|
|
"domain": "$NAMEDOTCOM_DOMAIN"
|
|
},
|
|
"NAMECHEAP": {
|
|
"apikey": "$NAMECHEAP_KEY",
|
|
"apiuser": "$NAMECHEAP_USER",
|
|
"domain": "$NAMECHEAP_DOMAIN"
|
|
},
|
|
"ROUTE53": {
|
|
"KeyId": "$R53_KEY_ID",
|
|
"SecretKey": "$R53_KEY",
|
|
"domain": "$R53_DOMAIN"
|
|
},
|
|
"SOFTLAYER": {
|
|
"COMMENT": "22-25 softlayer fails at direct internationalization, puncode works though",
|
|
"knownFailures": "22,23,24,25",
|
|
"domain": "$SL_DOMAIN",
|
|
"username": "$SL_USERNAME",
|
|
"api_key": "$SL_API_KEY"
|
|
},
|
|
"VULTR": {
|
|
"token": "$VULTR_TOKEN",
|
|
"domain": "$VULTR_DOMAIN"
|
|
},
|
|
"OVH": {
|
|
"app-key": "$OVH_APP_KEY",
|
|
"app-secret-key": "$OVH_APP_SECRET_KEY",
|
|
"consumer-key": "$OVH_CONSUMER_KEY",
|
|
"domain": "$OVH_DOMAIN"
|
|
}
|
|
}
|