Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

(3.x) Document config.require-encryption #5188

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/includes/security/providers/http-basic-auth.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ See the link:{helidon-github-tree-url}/master/examples/security/outbound-overrid
[source,yaml]
.Configuration example
----
security:
config.require-encryption: false
security:
providers:
- http-basic-auth:
Expand Down
2 changes: 2 additions & 0 deletions docs/includes/security/providers/http-digest-auth.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ include::{rootdir}/config/io_helidon_security_providers_httpauth_HttpDigestAuthP
[source,yaml]
.Configuration example
----
security:
config.require-encryption: false
security:
providers:
- http-digest-auth:
Expand Down
2 changes: 2 additions & 0 deletions docs/includes/security/providers/http-signatures.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ See the link:{helidon-github-tree-url}/master/examples/security/webserver-signat
[source,yaml]
.Configuration example
----
security:
config.require-encryption: false
security:
providers:
- http-signatures:
Expand Down
2 changes: 2 additions & 0 deletions docs/includes/security/providers/oidc.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ See the link:{helidon-github-tree-url}/examples/security/idcs-login[example] on
[source,yaml]
.Configuration example
----
security:
config.require-encryption: false
security:
providers:
- oidc:
Expand Down
10 changes: 10 additions & 0 deletions docs/mp/security/providers.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,16 @@ The following providers are no longer evolved:
|<<JWT Provider,JWT Provider>> |Authentication |✅ |JWT tokens passed from frontend
|===

**Note**: If the example code uses clear-text passwords in configuration, ensure that you add the following to the code snippet:

[source,]
----
security:
config.require-encryption: false
----
If set to `true`, an exception is thrown. However, in a production environment, you would set this value to `true` so that any attempt to pass a clear-text password throws an exception.


=== OIDC Provider [[OIDC-Provider]]
Open ID Connect security provider.

Expand Down