From 84d9bf86f59eb7934d52e5613c29eaefb75d5187 Mon Sep 17 00:00:00 2001 From: max furman Date: Fri, 26 Jun 2020 10:42:13 -0700 Subject: [PATCH] Add `forceCN` option in ACME provisioner doc --- docs/provisioners.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/provisioners.md b/docs/provisioners.md index d4b73c30..e33dff63 100644 --- a/docs/provisioners.md +++ b/docs/provisioners.md @@ -341,6 +341,7 @@ Below is an example of an ACME provisioner in the `ca.json`: { "type": "ACME", "name": "my-acme-provisioner", + "forceCN": true, "claims": { "maxTLSCertDuration": "8h", "defaultTLSCertDuration": "2h", @@ -353,6 +354,9 @@ Below is an example of an ACME provisioner in the `ca.json`: * `name` (mandatory): a string used to identify the provider when the CLI is used. +* `forceCN` (optional): force one of the SANs to become the Common Name, if a + common name is not provided. + * `claims` (optional): overwrites the default claims set in the authority, see the [top](#provisioners) section for all the options.