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
Copy file name to clipboardExpand all lines: docs/configuration.md
+9-1Lines changed: 9 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -309,7 +309,15 @@ See the [Token Exchange](./token-exchange.md) section for more details.
309
309
310
310
The subject token to exchange.
311
311
312
-
If this value is present, the subject token will be used as-is. If this value is not present, the subject token will be dynamically fetched using the configuration provided under the `rest.auth.oauth2.token-exchange.subject-token` prefix.
312
+
If this value is present, the subject token will be used as-is. If this value is not present, the subject token may be read from the file specified by `rest.auth.oauth2.token-exchange.subject-token-file`, or dynamically fetched using the configuration provided under the `rest.auth.oauth2.token-exchange.subject-token` prefix.
Path to a file containing the subject token. The file content is read and trimmed to obtain the token value. Ignored if `rest.auth.oauth2.token-exchange.subject-token` is set. If this is the only static source and neither inline token nor dynamic config is provided, the file must exist and be readable at configuration load time.
Path to a file containing the actor token. The file content is read and trimmed to obtain the token value. Ignored if `rest.auth.oauth2.token-exchange.actor-token` is set. If this is the only static source and neither inline token nor dynamic config is provided, the file must exist and be readable at configuration load time.
0 commit comments