go-acme / lego

Let's Encrypt/ACME client and library written in Go
https://go-acme.github.io/lego/
MIT License
7.44k stars 985 forks source link

Support for provider: mittwald #2177

Open jotimann opened 1 month ago

jotimann commented 1 month ago

Welcome

How do you use lego?

Library

Link to the DNS provider

https://www.mittwald.de/

Link to the API documentation

https://api.mittwald.de/v2/docs/

Additional Notes

No response

ldez commented 1 month ago

Hello,

I checked quickly the API documentation, and I didn't find an endpoint to delete a record.

I also didn't find how to get a zone ID or project ID from a domain.

Could you give me more information about those elements?


Sponsoring is a good way to sustain open source maintainers: sponsor me

jotimann commented 1 month ago

Hello @ldez,

a DNS-Record is connected to a domain and the parent-Zone can not be deleted. It get's deleted when a domain get's deleted.

You only can create sub-zones like mail.DOMAIN.tld via https://api.mittwald.de/v2/docs/#/Domain/dns-create-dns-zone and delete them with https://api.mittwald.de/v2/docs/#/Domain/dns-delete-dns-zone

The projectid you can get when you lists your projects belonging to your user: https://api.mittwald.de/v2/docs/#/Project/project-list-projects and with that id you can list your zones connected to the project: https://api.mittwald.de/v2/docs/#/Domain/dns-list-dns-zones

If there is no way to delete or create parentZones like "mittwald.de", is it possible to get support for lego?

Greetings Jonas

ldez commented 1 month ago

ACME DNS-01 challenge requires to create and delete a TXT record (ex: _acme-challenge.example.com or _acme-challenge.sub.example.com)

The projectid you can get when you lists your projects belonging to your user: https://api.mittwald.de/v2/docs/#/Project/project-list-projects and with that id you can list your zones connected to the project: https://api.mittwald.de/v2/docs/#/Domain/dns-list-dns-zones

The endpoint /v2/projects requires the customer ID and the server ID. How do I get this information based on the API token?

If I follow your explanation, to create a TXT record:

I didn't find the call to create a TXT record. /v2/dns-zones/{dnsZoneId}/record-sets/{recordSet}/actions/set-managed allows to create A or MX record only (and the request schema is missing from the doc). Maybe it's /v2/dns-zones/{dnsZoneId}/record-sets/{recordSet} but the doc is not clear about that (and the request schema is missing from the doc).

to delete a record:

ldez commented 1 month ago

@jotimann any news?

jotimann commented 1 month ago

Hello @ldez,

sorry for the late answer.

The endpoint /v2/projects requires the customer ID and the server ID.

The customerID and serverID are not required. If you have your token the API will list your projects which belong to the user in the following schema:

```json [ { "createdAt": "2023-08-16T07:57:42.000Z", "customerId": UUID, "customerMeta": { "id": UUID }, "description": "My Project", "enabled": true, "id": UUID, "isReady": true, "projectHostingId": UUID, "readiness": "ready", "serverId": UUID, "serverShortId": "......", "shortId": ".....", "status": "ready", "statusSetAt": "2023-12-22T13:47:12.000Z" }, ... ] ```

there u will get the projectID, but the response can be multiple projects.

call /v2/projects/{projectId}/dns-zones with the project ID to get all the zones (pagination?)

No the dns-zones-route has no pagination and will get you:

```json { "id": UUID, "domain": "mittwald.de", "recordSet": { "mx": { "managed": true }, "combinedARecords": { "managedBy": { "ingressId": UUID } }, "cname": {}, "txt": { "settings": { "ttl": { "auto": true } }, "entries": [ "v=spf1 include:agenturserver.de ~all" ] }, "srv": {} } }, ```

with that id you can call https://api.mittwald.de/v2/docs/#/Domain/dns-create-dns-zone name e.g. "_acme-challenge" and parentZoneId is always the id of the dns-zone in your case example.com

The response from your post on /v2/docs/#/Domain/dns-create-dns-zone is the id of the new dns-zone of "_acme-challenge.example.com".

Last step you can set the correct txt-record via https://api.mittwald.de/v2/docs/#/Domain/dns-update-record-set

```json { "settings": { "ttl": { "auto": true } }, "entries": [ "txt-value" ] } ```

To delete the record you use https://api.mittwald.de/v2/docs/#/Domain/dns-delete-dns-zone with the zoneID

I hope I got everything and thanks for your work :) Greetings

ldez commented 1 month ago

but the response can be multiple projects.

How do I get the project ID when I only have a domain and a token?

No the dns-zones-route has no pagination and will get you:

The documentation about /v2/projects/{projectId}/dns-zones says: "List DNSZones belonging to a Project." and "An array of DNSZone objects."


  1. Can you give me a list of the calls to create only one TXT record based only on a token and a domain name?
  2. Can you give me a list of the calls to remove only one TXT record based only on a token and a domain name?
  3. Is Mittwald support for multiple TXT entries for the same domain?
jotimann commented 4 weeks ago

Create a txt record only with domain and token:

Delete a txt-record:


Is Mittwald support for multiple TXT entries for the same domain?

Yes you can create multiple entries for _acme-challenge.example.com just fill them in the entries:

{
  "settings": {
    "ttl": {
      "auto": true
    }
  },
  "entries": [
    "test",
    "test2"
  ]
}