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

DOC updates for 4638 incl build issues #4713

Merged
merged 1 commit into from
Aug 11, 2022
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
12 changes: 6 additions & 6 deletions docs/config/io_helidon_microprofile_jwt.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@

// tag::config[]

== Configuration options
== Configuration Options


.MicroProfile configuration options:
[cols="3,3,2,5a"]
MicroProfile configuration options:
[cols="3,3,2,5"]

|===
|key |type |default value |description
Expand All @@ -41,8 +41,8 @@

|===

.Optional configuration options:
[cols="3,3,2,5a"]
Optional configuration options:
[cols="3,3,2,5"]

|===
|key |type |default value |description
Expand All @@ -52,7 +52,7 @@ an important distinction when more than one provider is used
|`authenticate` |boolean |`true` |Whether to attempt authentication
|`propagate`|boolean |`true` |Whether to attempt identity propagation/JWT creation
|`principal-type`|string |`USER` |Whether we authenticate a user or a service (other option is SERVICE)
|`atn-token` |string |{nbsp} |A group for configuring authentication of the request
|`atn-token` |string ||A group for configuring authentication of the request
|`atn-token.verify-signature`|boolean |`true` |Whether to verify signature in incoming JWT. If disabled, _ANY_ JWT will be accepted
|`atn-token.jwt-audience`|string |{nbsp} |Expected audience of the JWT. If not defined, any audience is accepted (and we may accept JWT not inteded for us)
|`atn-token.jwk.resource.*`|string |{nbsp} |Configuration of the JWK to obtain key(s) to validate signatures of inbound token. The JWK should contain public keys. This may be: jwk.resource.path, jwk.resource.resource-path, jwk.resource.url, jwk.resource.content-plain (actual JSON string), jwk.resource.content (base64)
Expand Down
4 changes: 2 additions & 2 deletions docs/mp/jwt.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ include::{rootdir}/includes/mp.adoc[]

JSON Web Tokens (JWT) are an open, industry standard https://datatracker.ietf.org/doc/html/rfc7519[(RFC 7519)] method for representing claims securely between two parties.

JSON Web Token defines a compact and self-contained way for securely transmitting information between parties as a JSON object. With JWT Auth you can integrate security features such as single sign on into your Helidon MP applications.
JWT defines a compact and self-contained way for securely transmitting information between parties as a JSON object. With JWT Auth you can integrate security features such as single sign on into your Helidon MP applications.


include::{rootdir}/includes/dependencies.adoc[]
Expand Down Expand Up @@ -135,7 +135,7 @@ Obtain the Security Token from external issuer:
TOKEN=sdf4dDSWFcswdsffDSasEgv...
----

Run the application and execute an http request against it:
Run the application and execute an HTTP request against it:

[source, bash]
----
Expand Down