mirror of
https://github.com/openshift/openshift-docs.git
synced 2026-02-05 12:46:18 +01:00
39 lines
1.6 KiB
Plaintext
39 lines
1.6 KiB
Plaintext
// Module included in the following assemblies:
|
|
//
|
|
// * authentication/understanding-identity-provider.adoc
|
|
// * post_installation_configuration/preparing-for-users.adoc
|
|
|
|
:_mod-docs-content-type: REFERENCE
|
|
[id="identity-provider-parameters_{context}"]
|
|
= Identity provider parameters
|
|
|
|
The following parameters are common to all identity providers:
|
|
|
|
[cols="2a,8a",options="header"]
|
|
|===
|
|
|Parameter | Description
|
|
|`name` | The provider name is prefixed to provider user names to form an
|
|
identity name.
|
|
|
|
|`mappingMethod` | Defines how new identities are mapped to users when they log in.
|
|
Enter one of the following values:
|
|
|
|
claim:: The default value. Provisions a user with the identity's preferred
|
|
user name. Fails if a user with that user name is already mapped to another
|
|
identity.
|
|
lookup:: Looks up an existing identity, user identity mapping, and user,
|
|
but does not automatically provision users or identities. This allows cluster
|
|
administrators to set up identities and users manually, or using an external
|
|
process. Using this method requires you to manually provision users.
|
|
add:: Provisions a user with the identity's preferred user name. If a user
|
|
with that user name already exists, the identity is mapped to the existing user,
|
|
adding to any existing identity mappings for the user. Required when multiple
|
|
identity providers are configured that identify the same set of users and map to
|
|
the same user names.
|
|
|===
|
|
|
|
[NOTE]
|
|
When adding or changing identity providers, you can map identities from the new
|
|
provider to existing users by setting the `mappingMethod` parameter to
|
|
`add`.
|