From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by lists.proxmox.com (Postfix) with ESMTPS id 0AE37695AE for ; Mon, 13 Sep 2021 16:06:26 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 019DE2AC3B for ; Mon, 13 Sep 2021 16:06:26 +0200 (CEST) Received: from mx1.b1-systems.de (mx1.b1-systems.de [159.69.135.40]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by firstgate.proxmox.com (Proxmox) with ESMTPS id 872602AC2F for ; Mon, 13 Sep 2021 16:06:25 +0200 (CEST) Received: from centaur.systems.b1-systems.de (centaur.local.b1-systems.de [172.21.82.57]) by mx1.b1-systems.de (Postfix) with ESMTP id C0B5E81501; Mon, 13 Sep 2021 13:58:25 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by centaur.systems.b1-systems.de (Postfix) with ESMTP id BA0DDA46D7; Mon, 13 Sep 2021 13:58:25 +0000 (UTC) X-Virus-Scanned: amavisd-new at b1-systems.de X-Spam-Flag: NO X-Spam-Score: -1.901 X-Spam-Status: No, score=-1.901 tagged_above=-9999 required=5 tests=[BAYES_00=-1.9, NO_RECEIVED=-0.001, NO_RELAYS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no Received: from mx2.b1-systems.de ([172.21.82.53]) by localhost (centaur.systems.b1-systems.de [172.21.82.57]) (amavisd-new, port 10024) with ESMTP id h8LCSbG59Nne; Mon, 13 Sep 2021 13:58:25 +0000 (UTC) From: =?UTF-8?q?Jens=20Mei=C3=9Fner?= To: Proxmox Devel List Cc: =?UTF-8?q?Jens=20Mei=C3=9Fner?= Date: Mon, 13 Sep 2021 15:57:49 +0200 Message-Id: <20210913135749.24698-1-meissner@b1-systems.de> X-Mailer: git-send-email 2.33.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 0 BAYES_00 -1.9 Bayes spam probability is 0 to 1% KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment SPF_HELO_PASS -0.001 SPF: HELO matches SPF record SPF_PASS -0.001 SPF: sender matches SPF record Subject: [pve-devel] [PATCH proxmox-acme] Add DNS challenge schema for nsupdate. X-BeenThere: pve-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox VE development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Sep 2021 14:06:26 -0000 Signed-off-by: Jens Meißner --- src/dns-challenge-schema.json | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/src/dns-challenge-schema.json b/src/dns-challenge-schema.json index ddfe2b2..a222ed3 100644 --- a/src/dns-challenge-schema.json +++ b/src/dns-challenge-schema.json @@ -237,7 +237,24 @@ "nm" : {}, "nsd" : {}, "nsone" : {}, - "nsupdate" : {}, + "nsupdate" : { + "fields" : { + "NSUPDATE_SERVER" : { + "description" : "Hostname of the RFC 2136 compatible nameserver", + "type" : "string" + }, + "NSUPDATE_KEY" : { + "description" : "Path to the nsupdate key file (TSIG key)", + "type" : "string" + }, + "NSUPDATE_ZONE" : { + "description" : "DNS zone name (optional)", + "optional" : 1, + "type" : "string" + } + }, + "name" : "nsupdate (RFC 2136)" + }, "nw" : {}, "oci" : {}, "one" : {}, -- 2.33.0