diff --git a/docs/src/main/asciidoc/security-getting-started.adoc b/docs/src/main/asciidoc/security-getting-started.adoc index f149f127e2baa..3b2adc299ddf0 100644 --- a/docs/src/main/asciidoc/security-getting-started.adoc +++ b/docs/src/main/asciidoc/security-getting-started.adoc @@ -3,12 +3,12 @@ This guide is maintained in the main Quarkus repository and pull requests should be submitted there: https://github.com/quarkusio/quarkus/tree/main/docs/src/main/asciidoc //// -= Secure a Quarkus application with basic authentication and JPA += Get started with security in Quarkus by using basic authentication include::./attributes.adoc[] -To help you get started with security in Quarkus, this tutorial demonstrates how you can further secure your Quarkus application endpoints by combining the xref:security-built-in-authentication.adoc#basic-auth[Quarkus built-in basic HTTP authentication] with the JPA identity provider. -`IdentityProvider` verifies the authentication credentials to create a `SecurityIdentity` instance and authorizes a secure connection to the endpoint by using Role Based Access Control (RBAC). +To help you get started with security in Quarkus, this tutorial demonstrates how you can secure your Quarkus application endpoints by combining the xref:security-built-in-authentication.adoc#basic-auth[Quarkus built-in basic HTTP authentication] with the JPA identity provider. +`IdentityProvider` verifies the authentication credentials to create a `SecurityIdentity` instance and authorizes secure access to the endpoint by using Role Based Access Control (RBAC). [NOTE] ==== Completing these steps ensures that your Quarkus applications are more secure than just configuring users and roles in `application.properties` alone.