Fix OIDC documentation settings (#44115)

Current kibana setting is xpack.security.auth.oidc.realm, 
but the correct  one is xpack.security.authc.oidc.realm
This commit is contained in:
marcos ramos 2019-07-09 12:40:33 -03:00 committed by Ioannis Kakavas
parent 23d7e309da
commit 88ee47c9ba
1 changed files with 2 additions and 2 deletions

View File

@ -523,7 +523,7 @@ The three additional settings that are required for OpenID Connect support are s
[source, yaml]
------------------------------------------------------------
xpack.security.authProviders: [oidc]
xpack.security.auth.oidc.realm: "oidc1"
xpack.security.authc.oidc.realm: "oidc1"
server.xsrf.whitelist: [/api/security/v1/oidc]
------------------------------------------------------------
@ -544,7 +544,7 @@ xpack.security.authProviders: [oidc, basic]
This will allow users that haven't already authenticated with OpenID Connect to
navigate directly to the `/login` page in {kib} in order to use the login form.
`xpack.security.auth.oidc.realm`::
`xpack.security.authc.oidc.realm`::
The name of the OpenID Connect realm in {es} that should handle authentication
for this Kibana instance.