@@ -108,20 +108,20 @@ public final class RootCAProvider extends AdapterBase implements CAProvider, Con
108108 null ,
109109 "The ROOT CA private key in PEM format. " +
110110 "When set along with the public key and certificate, CloudStack uses this custom CA instead of auto-generating one. " +
111- "All three ca.plugin.root.* keys must be set together. Restart management server(s) when changed." , true );
111+ "All three ca.plugin.root.* keys must be set together. Restart management server(s) when changed." , false );
112112
113113 private static ConfigKey <String > rootCAPublicKey = new ConfigKey <>("Hidden" , String .class ,
114114 "ca.plugin.root.public.key" ,
115115 null ,
116116 "The ROOT CA public key in PEM format (X.509/SPKI: must start with '-----BEGIN PUBLIC KEY-----'). " +
117- "Required when providing a custom CA. Restart management server(s) when changed." , true );
117+ "Required when providing a custom CA. Restart management server(s) when changed." , false );
118118
119119 private static ConfigKey <String > rootCACertificate = new ConfigKey <>("Hidden" , String .class ,
120120 "ca.plugin.root.ca.certificate" ,
121121 null ,
122122 "The CA certificate(s) in PEM format (must start with '-----BEGIN CERTIFICATE-----'). " +
123123 "For intermediate CAs, concatenate the signing cert first, followed by intermediate(s) and root. " +
124- "Required when providing a custom CA. Restart management server(s) when changed." , true );
124+ "Required when providing a custom CA. Restart management server(s) when changed." , false );
125125
126126 private static ConfigKey <String > rootCAIssuerDN = new ConfigKey <>("Advanced" , String .class ,
127127 "ca.plugin.root.issuer.dn" ,
0 commit comments