You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Update the enabling authentication with rhbk
* Update the enabling authentication with rhbk
* Update the enabling authentication with rhbk
---------
Co-authored-by: GitHub Actions <[email protected]>
Copy file name to clipboardexpand all lines: modules/authentication/proc-enabling-authentication-with-rhbk.adoc
+48-10
Original file line number
Diff line number
Diff line change
@@ -39,20 +39,59 @@ Save the value for the next step:
39
39
[source,yaml]
40
40
----
41
41
auth:
42
-
environment: production # <1>
42
+
environment: production
43
43
providers:
44
44
oidc:
45
45
production:
46
-
metadataUrl: ${AUTH_OIDC_METADATA_URL} # <2>
46
+
metadataUrl: ${AUTH_OIDC_METADATA_URL}
47
47
clientId: ${AUTH_OIDC_CLIENT_ID}
48
48
clientSecret: ${AUTH_OIDC_CLIENT_SECRET}
49
-
signInPage: oidc # <3>
49
+
prompt: auto
50
+
signInPage: oidc
50
51
----
51
-
<1> Mark the environment as `production` and disable the Guest login option in the {product-short} login page.
52
-
<2> Apply the {rhbk} credentials configured in your {product-short} secrets.
53
-
<3> To enable the {rhbk} provider as your {product-short} sign-in provider.
52
+
53
+
`environment: production`::
54
+
Mark the environment as `production` to hide the Guest login in the {product-short} home page.
55
+
56
+
`metadataUrl`, `clientId`, `clientSecret`::
57
+
To configure the OIDC provider with your secrets.
58
+
59
+
`sigInPage: oidc`::
60
+
To enable the OIDC provider as default sign-in provider.
61
+
62
+
`prompt: auto`::
63
+
To allow the identity provider to automatically determine whether to prompt for credentials or bypass the login redirect if an active {rhsso} session exists.
64
+
65
+
[NOTE]
66
+
====
67
+
If `prompt: auto` is not set, the identity provider defaults to `prompt: none`, which assumes that you are already logged in and rejects sign-in requests without an active session.
68
+
====
69
+
70
+
Optional: Consider adding the following optional fields:
0 commit comments