Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-10-11 09:11:25 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-10-11 09:11:25 +0300
commitfd92c8afee165b1da0f0d2386fdf4382bf6d7ab2 (patch)
treed4d7cc642a6de36c59adf6375afabdfdc0630fe0 /doc/ci/secrets/convert-to-id-tokens.md
parent676396cd60c28640534bc56a1183fbf9d179ec47 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/ci/secrets/convert-to-id-tokens.md')
-rw-r--r--doc/ci/secrets/convert-to-id-tokens.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/ci/secrets/convert-to-id-tokens.md b/doc/ci/secrets/convert-to-id-tokens.md
index a477b73c107..20eae01f45b 100644
--- a/doc/ci/secrets/convert-to-id-tokens.md
+++ b/doc/ci/secrets/convert-to-id-tokens.md
@@ -52,7 +52,7 @@ As part of the transition from `CI_JOB_JWT` to ID tokens, you must update the `b
```shell
$ vault write auth/jwt/config \
- jwks_url="https://gitlab.example.com/-/jwks" \
+ oidc_discovery_url="https://gitlab.example.com" \
bound_issuer="https://gitlab.example.com"
```
@@ -72,7 +72,7 @@ You can create multiple authentication paths in Vault, which enable you to trans
```shell
$ vault write auth/jwt_v2/config \
- jwks_url="https://gitlab.example.com/-/jwks" \
+ oidc_discovery_url="https://gitlab.example.com" \
bound_issuer="https://gitlab.example.com"
```
@@ -170,7 +170,7 @@ After all roles have been updated with the `bound_claims.iss` claims, you can re
```shell
$ vault write auth/jwt/config \
- jwks_url="https://gitlab.example.com/-/jwks" \
+ oidc_discovery_url="https://gitlab.example.com" \
bound_issuer=""
```