Merge branch '6.3.x' into 6.4.x

This commit is contained in:
Josh Cummings 2025-05-13 11:18:02 -06:00
commit 5ba4ab5e11
No known key found for this signature in database
GPG Key ID: 869B37A20E876129
2 changed files with 17 additions and 15 deletions

View File

@ -103,10 +103,11 @@ spring:
security:
saml2:
relyingparty:
okta:
identityprovider:
entity-id: ...
singlesignon.sign-request: false
registration:
okta:
assertingparty:
entity-id: ...
singlesignon.sign-request: false
----
Java::

View File

@ -125,7 +125,7 @@ spring:
relyingparty:
registration:
adfs:
identityprovider:
assertingparty:
entity-id: https://idp.example.com/issuer
verification.credentials:
- certificate-location: "classpath:idp.crt"
@ -886,16 +886,17 @@ spring:
security:
saml2:
relyingparty:
okta:
signing.credentials: &relying-party-credentials
- private-key-location: classpath:rp.key
certificate-location: classpath:rp.crt
identityprovider:
entity-id: ...
azure:
signing.credentials: *relying-party-credentials
identityprovider:
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`.