keycloak-scim/topics/identity-broker/saml.adoc

77 lines
3.4 KiB
Text
Raw Normal View History

2016-05-26 16:09:04 +00:00
=== SAML v2.0 Identity Providers
2016-05-27 15:23:34 +00:00
{{book.project.name}} can broker identity providers based on the SAML v2.0 protocol.
2016-05-26 16:09:04 +00:00
2016-05-27 15:23:34 +00:00
To begin configuring an OIDC provider, go to the `Identity Providers` left menu item
and select `SAML v2.0` from the `Add provider` drop down list. This will bring you to the `Add identity provider` page.
2016-05-26 16:09:04 +00:00
2016-05-27 15:23:34 +00:00
.Add Identity Provider
2016-05-27 18:23:49 +00:00
image:../../{{book.images}}/saml-add-identity-provider.png[]
2016-05-26 16:09:04 +00:00
2016-05-27 15:23:34 +00:00
The initial configuration options on this page are described in <<fake/../../identity-broker/configuration.adoc#_general-idp-config, General IDP Configuration>>.
You must define the SAML configuration options as well. They basically describe the SAML IDP you are communicating with.
2016-05-26 16:09:04 +00:00
.SAML Config
2016-05-26 16:09:04 +00:00
|===
2016-05-27 15:23:34 +00:00
|Configuration|Description
2016-05-26 16:09:04 +00:00
2016-05-27 15:23:34 +00:00
|Single Sign-On Service URL
|This is a required field and specifies the SAML endpoint to start the authentication process. If your SAML IDP publishes an IDP entity descriptor, the value of
this field will be specified there.
2016-05-26 16:09:04 +00:00
2016-05-27 15:23:34 +00:00
|Single Logout Service URL
|This is an optional field that specifies the SAML logout endpoint. If your SAML IDP publishes an IDP entity descriptor, the value of
this field will be specified there.
|Backchannel Logout
|Enable if your SAML IDP supports backchannel logout
2016-05-26 16:09:04 +00:00
|NameID Policy Format
|Specifies the URI reference corresponding to a name identifier format. Defaults to urn:oasis:names:tc:SAML:2.0:nameid-format:persistent.
2016-05-27 15:23:34 +00:00
|HTTP-POST Binding Response
|When this realm responds to any SAML requests sent by the external IDP, which SAML binding should be used? If set to `off`, then the Redirect Binding will be used.
2016-05-26 16:09:04 +00:00
2016-05-27 15:23:34 +00:00
|HTTP-POST Binding for AuthnRequest
|When this realm requests authentication from the external SAML IDP, which SAML binding should be used? If set to `off`, then the Redirect Binding will be used.
2016-05-26 16:09:04 +00:00
2016-05-27 15:23:34 +00:00
|Want AuthnRequests Signed
|If true, it will use the realm's keypair to sign requests sent to the external SAML IDP
2016-05-26 16:09:04 +00:00
2016-05-27 15:23:34 +00:00
|Signature Algorithm
|If `Want AuthnRequests Signed` is on, then you can also pick the signature algorithm to use.
2016-05-26 16:09:04 +00:00
2016-05-27 15:23:34 +00:00
|Force Authentication
|Indicates that the user will be forced to enter in their credentials at the external IDP even if they are already logged in.
2016-05-26 16:09:04 +00:00
2016-05-27 15:23:34 +00:00
|Validate Signature
|Whether or not the realm should expect that SAML requests and responses from the external IDP be digitally signed. It is highly recommended you turn this on!
2016-05-26 16:09:04 +00:00
2016-05-27 15:23:34 +00:00
|Validating X509 Certificate
|The public certificate that will be used to validate the signatures of SAML requests and responses from the external IDP.
|===
2016-05-26 16:09:04 +00:00
2016-05-27 15:23:34 +00:00
You can also import all this configuration data by providing a URL or file that points to the SAML IDP entity descriptor of the external IDP.
If you are connecting to a {{book.project.name}} external IDP, you can import the IDP setttings from the url `<root>/auth/realms/\{realm-name}/protocol/saml/descriptor`.
This link is an XML document describing metadata about the IDP.
2016-05-26 16:09:04 +00:00
You can also import all this configuration data by providing a URL or XML file that points to the entity descriptor of the external SAML IDP you want to connect to.
[[_identity_broker_saml_sp_descriptor]]
2016-05-26 16:09:04 +00:00
==== SP Descriptor
2016-05-27 15:23:34 +00:00
Once you create a SAML provider, there is an `EXPORT` button that appears when viewing that provider.
Clicking this button will export a SAML SP entity descriptor which you can use to import into the external SP provider.
This metadata is also available publicly by going to the URL
2016-05-26 16:09:04 +00:00
[source]
----
2016-05-27 18:28:46 +00:00
http[s]://{host:port}/auth/realms/{realm-name}/broker/{broker-alias}/endpoint/descriptor
2016-05-26 16:09:04 +00:00
----