From 29ab0fd8f00d8fa50b36a3a764efe54ccd825429 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emmanuel=20Beno=C3=AEt?= Date: Sun, 5 Dec 2021 13:30:05 +0100 Subject: [PATCH] Fixed example configuration * LDAP attribute names are case-sensitive here * the ";binary" suffix is needed. --- fetch-certificates.yml.example | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fetch-certificates.yml.example b/fetch-certificates.yml.example index efe4465..255ab60 100644 --- a/fetch-certificates.yml.example +++ b/fetch-certificates.yml.example @@ -20,10 +20,10 @@ ldap: base_dn: ou=certificates,dc=example,dc=org # Name of the attribute that will contain an end entity certificate # in the LDAP objects. - end_entity: userCertificate + end_entity: userCertificate;binary # Name of the attribute that will contain a CA certificate in the LDAP # objects. - ca_certificate: caCertificate + ca_certificate: cACertificate;binary # Attribute that will contain the DN of the next certificate in the chain. ca_chaining: seeAlso