From 27319e3f9b304194ef601f4e0f95987a0a33daea Mon Sep 17 00:00:00 2001 From: Danilo Piazzalunga Date: Thu, 8 May 2025 20:46:25 +0000 Subject: [PATCH] Add missing registration property in YAML listing Signed-off-by: Danilo Piazzalunga --- .../saml2/login/authentication-requests.adoc | 9 ++++---- .../pages/servlet/saml2/login/overview.adoc | 21 ++++++++++--------- 2 files changed, 16 insertions(+), 14 deletions(-) diff --git a/docs/modules/ROOT/pages/servlet/saml2/login/authentication-requests.adoc b/docs/modules/ROOT/pages/servlet/saml2/login/authentication-requests.adoc index 1195cb2933..2f794becf3 100644 --- a/docs/modules/ROOT/pages/servlet/saml2/login/authentication-requests.adoc +++ b/docs/modules/ROOT/pages/servlet/saml2/login/authentication-requests.adoc @@ -66,10 +66,11 @@ spring: security: saml2: relyingparty: - okta: - assertingparty: - entity-id: ... - singlesignon.sign-request: false + registration: + okta: + assertingparty: + entity-id: ... + singlesignon.sign-request: false ---- Java:: diff --git a/docs/modules/ROOT/pages/servlet/saml2/login/overview.adoc b/docs/modules/ROOT/pages/servlet/saml2/login/overview.adoc index 53b0fc3fcb..e394fb2a08 100644 --- a/docs/modules/ROOT/pages/servlet/saml2/login/overview.adoc +++ b/docs/modules/ROOT/pages/servlet/saml2/login/overview.adoc @@ -835,16 +835,17 @@ spring: security: saml2: relyingparty: - okta: - signing.credentials: &relying-party-credentials - - private-key-location: classpath:rp.key - certificate-location: classpath:rp.crt - assertingparty: - entity-id: ... - azure: - signing.credentials: *relying-party-credentials - assertingparty: - entity-id: ... + registration: + okta: + signing.credentials: &relying-party-credentials + - private-key-location: classpath:rp.key + certificate-location: classpath:rp.crt + assertingparty: + entity-id: ... + azure: + signing.credentials: *relying-party-credentials + assertingparty: + entity-id: ... ---- Second, in a database, you need not replicate the model of `RelyingPartyRegistration`.