From aa256da9b49e845e2535510ea0b8a3b878eab556 Mon Sep 17 00:00:00 2001 From: Joel Strasser Date: Thu, 20 Mar 2025 12:29:59 +0100 Subject: [PATCH 1/5] feat: enable DNSSEC for joelst --- domains/joelst.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/domains/joelst.json b/domains/joelst.json index 8cf3e6bbd..2ce18cdb9 100644 --- a/domains/joelst.json +++ b/domains/joelst.json @@ -9,6 +9,7 @@ "ns2-03.azure-dns.net", "ns3-03.azure-dns.org", "ns4-03.azure-dns.info" - ] + ], + "DS": "20446 13 2 66D720AF25875B71BB1ECBF45D1E108D4CE4D51EF1553F7E50F60B2B49A279A6" } } From 11df948eb88afcc537015b07fd263ac8d312cffb Mon Sep 17 00:00:00 2001 From: Joel Strasser Date: Thu, 20 Mar 2025 12:45:25 +0100 Subject: [PATCH 2/5] fix(joelst.json): wrong schema for DS record --- domains/joelst.json | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/domains/joelst.json b/domains/joelst.json index 2ce18cdb9..d6c50ac94 100644 --- a/domains/joelst.json +++ b/domains/joelst.json @@ -10,6 +10,13 @@ "ns3-03.azure-dns.org", "ns4-03.azure-dns.info" ], - "DS": "20446 13 2 66D720AF25875B71BB1ECBF45D1E108D4CE4D51EF1553F7E50F60B2B49A279A6" + "DS": [ + { + "keytag": "20446", + "algorith": "13", + "digest_type": "2", + "digest": "66D720AF25875B71BB1ECBF45D1E108D4CE4D51EF1553F7E50F60B2B49A279A6" + } + ] } } From f18334b60d70c8c8de5eba79c47acfba0304e41c Mon Sep 17 00:00:00 2001 From: Joel Strasser Date: Thu, 20 Mar 2025 12:46:57 +0100 Subject: [PATCH 3/5] fix(joelst.json): typo in algorithm --- domains/joelst.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/domains/joelst.json b/domains/joelst.json index d6c50ac94..82d62ffce 100644 --- a/domains/joelst.json +++ b/domains/joelst.json @@ -13,7 +13,7 @@ "DS": [ { "keytag": "20446", - "algorith": "13", + "algorithm": "13", "digest_type": "2", "digest": "66D720AF25875B71BB1ECBF45D1E108D4CE4D51EF1553F7E50F60B2B49A279A6" } From 8d44dc56959464f363c5b9d478347e54a4502d82 Mon Sep 17 00:00:00 2001 From: Joel Strasser Date: Thu, 20 Mar 2025 12:49:22 +0100 Subject: [PATCH 4/5] fix(joelst.json): keytag, algorithm, disgest_type must be a number --- domains/joelst.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/domains/joelst.json b/domains/joelst.json index 82d62ffce..68144ac2d 100644 --- a/domains/joelst.json +++ b/domains/joelst.json @@ -12,9 +12,9 @@ ], "DS": [ { - "keytag": "20446", - "algorithm": "13", - "digest_type": "2", + "keytag": 20446, + "algorithm": 13, + "digest_type": 2, "digest": "66D720AF25875B71BB1ECBF45D1E108D4CE4D51EF1553F7E50F60B2B49A279A6" } ] From 9f20612c1d253baacb9f6da95d6244390c14ce3b Mon Sep 17 00:00:00 2001 From: Joel Strasser Date: Thu, 20 Mar 2025 12:51:12 +0100 Subject: [PATCH 5/5] =?UTF-8?q?fix(joelst.json):=20it's=20key=5Ftag=20?= =?UTF-8?q?=F0=9F=98=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- domains/joelst.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/domains/joelst.json b/domains/joelst.json index 68144ac2d..0fc708102 100644 --- a/domains/joelst.json +++ b/domains/joelst.json @@ -12,7 +12,7 @@ ], "DS": [ { - "keytag": 20446, + "key_tag": 20446, "algorithm": 13, "digest_type": 2, "digest": "66D720AF25875B71BB1ECBF45D1E108D4CE4D51EF1553F7E50F60B2B49A279A6"