From 3989be8a3b4dd092e9dccdeb38edce73c7bc73c9 Mon Sep 17 00:00:00 2001 From: D3luxee Date: Sun, 3 May 2020 17:43:54 +0200 Subject: [PATCH] Add deSEC to OWNERS, provider-list.md and writing-providers.md (#733) --- OWNERS | 1 + docs/provider-list.md | 1 + docs/writing-providers.md | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/OWNERS b/OWNERS index e89e0621c..8f32ab711 100644 --- a/OWNERS +++ b/OWNERS @@ -3,6 +3,7 @@ providers/azuredns @vatsalyagoel providers/bind @tlimoncelli # providers/cloudflare providers/cloudns @pragmaton +providers/desec @D3luxee providers/digitalocean @Deraen providers/dnsimple @aeden providers/gandi_v5 @TomOnTime diff --git a/docs/provider-list.md b/docs/provider-list.md index a45b75ada..1a083a6da 100644 --- a/docs/provider-list.md +++ b/docs/provider-list.md @@ -72,6 +72,7 @@ provided to help community members support their code independently. Maintainers of contributed providers: * `CLOUDNS` @pragmaton +* `DESEC` @D3luxee * `DIGITALOCEAN` @Deraen * `DNSIMPLE` @aeden * `EXOSCALE` @pierre-emmanuelJ diff --git a/docs/writing-providers.md b/docs/writing-providers.md index 530976f88..9281273e0 100644 --- a/docs/writing-providers.md +++ b/docs/writing-providers.md @@ -97,7 +97,7 @@ into three general categories: multiple records on a label (for example, example www.example.com has A and MX records), you have to replace all the records at that label. (GANDI_V5) -* **incremental-label-type:** Like incremental-record, but updates to any records at a label have to be done by type. For example, if a label (www.example.com) has many A and MX records, even the smallest change to one of the A records requires replacing all the A records. Any changes to the MX records requires replacing all the MX records. If an A record is converted to a CNAME, one must remove all the A records in one call, and add the CNAME record with another call. This is deceptively difficult to get right; if you have the voice between incremental-label-type and incremental-label, pick incremental-label. +* **incremental-label-type:** Like incremental-record, but updates to any records at a label have to be done by type. For example, if a label (www.example.com) has many A and MX records, even the smallest change to one of the A records requires replacing all the A records. Any changes to the MX records requires replacing all the MX records. If an A record is converted to a CNAME, one must remove all the A records in one call, and add the CNAME record with another call. This is deceptively difficult to get right; if you have the voice between incremental-label-type and incremental-label, pick incremental-label. (DESEC) TODO: Categorize NAMECHEAP