This is an automated email from the ASF dual-hosted git repository.
mimaison pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/kafka.git
The following commit(s) were added to refs/heads/trunk by this push:
new ccd8330e9eb KAFKA-20355: Invalid formatting of System Properties in
website (#21874)
ccd8330e9eb is described below
commit ccd8330e9eb0e2439f1d025282bef8b724d6ec1d
Author: gomudayya <[email protected]>
AuthorDate: Thu Mar 26 23:53:56 2026 +0900
KAFKA-20355: Invalid formatting of System Properties in website (#21874)
Reviewers: Mickael Maison <[email protected]>
---
docs/configuration/system-properties.md | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/docs/configuration/system-properties.md
b/docs/configuration/system-properties.md
index c6296267b13..2637441ffbf 100644
--- a/docs/configuration/system-properties.md
+++ b/docs/configuration/system-properties.md
@@ -55,6 +55,7 @@ Default Value:
</td></tr> </table>
+
* #### org.apache.kafka.sasl.oauthbearer.allowed.urls
This system property is used to set the allowed URLs as SASL OAUTHBEARER token
or jwks endpoints. This property accepts comma-separated list of URLs. By
default the value is an empty list.
@@ -82,6 +83,7 @@ Default Value:
</td></tr> </table>
+
* #### org.apache.kafka.disallowed.login.modules
This system property is used to disable the problematic login modules usage in
SASL JAAS configuration. This property accepts comma-separated list of
loginModule names. By default **com.sun.security.auth.module.JndiLoginModule**
and **com.sun.security.auth.module.LdapLoginModule** loginModule is disabled.
@@ -123,6 +125,7 @@ Default Value:
com.sun.security.auth.module.JndiLoginModule,com.sun.security.auth.module.LdapLoginModule
</td></tr> </table>
+
* #### org.apache.kafka.allowed.login.modules
This system property is used to explicitly allow specific login modules in
SASL JAAS configuration. It accepts a comma-separated list of login module
class names. This property provides a stricter, allowed-list-based alternative
to the deprecated `org.apache.kafka.disallowed.login.modules` property. It is
recommended to use this property to improve the security of JAAS
configurations.
@@ -144,6 +147,7 @@ Since:
Default Value:
</th></tr> </table>
+
* #### org.apache.kafka.automatic.config.providers
This system property controls the automatic loading of ConfigProvider
implementations in Apache Kafka. ConfigProviders are used to dynamically supply
configuration values from sources such as files, directories, or environment
variables. This property accepts a comma-separated list of ConfigProvider
names. By default, all built-in ConfigProviders are enabled, including
**FileConfigProvider** , **DirectoryConfigProvider** , and
**EnvVarConfigProvider**.