From 3a146a731f8cf79351812cc998d5a9577a0fd4f0 Mon Sep 17 00:00:00 2001 From: Pearl Dsilva Date: Mon, 14 Apr 2025 11:42:37 -0400 Subject: [PATCH] Makes LDAPS Configuration non dynamic --- .../java/org/apache/cloudstack/ldap/LdapConfiguration.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/user-authenticators/ldap/src/main/java/org/apache/cloudstack/ldap/LdapConfiguration.java b/plugins/user-authenticators/ldap/src/main/java/org/apache/cloudstack/ldap/LdapConfiguration.java index 6a62ad8d99df..460758dbb4c8 100644 --- a/plugins/user-authenticators/ldap/src/main/java/org/apache/cloudstack/ldap/LdapConfiguration.java +++ b/plugins/user-authenticators/ldap/src/main/java/org/apache/cloudstack/ldap/LdapConfiguration.java @@ -173,7 +173,7 @@ public class LdapConfiguration implements Configurable{ "ldap.truststore", null, "Sets the path to the truststore to use for SSL", - true, + false, ConfigKey.Scope.Domain); private static final ConfigKey ldapTrustStorePassword = new ConfigKey( "Secure", @@ -181,7 +181,7 @@ public class LdapConfiguration implements Configurable{ "ldap.truststore.password", null, "Sets the password for the truststore", - true, + false, ConfigKey.Scope.Domain); private final static int scope = SearchControls.SUBTREE_SCOPE;