Skip to content

Commit a87153c

Browse files
committed
Turn choice into unordered list
1 parent e66df56 commit a87153c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/custom-resources/oidc/keycloak_setup.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Steps:
4444

4545
4. Create the client `nginx-plus`:
4646

47-
1. If you are not using PKCE, use the following command to create an OIDC client that does not use PKCE:
47+
- If you are not using PKCE, use the following command to create an OIDC client that does not use PKCE:
4848

4949
```shell
5050
SECRET=`curl -sS -k -X POST -d '{ "clientId": "nginx-plus", "redirectUris": ["https://webapp.example.com:443/_codexch"], "attributes": {"post.logout.redirect.uris": "https://webapp.example.com:443/*"}}' -H "Content-Type:application/json" -H "Authorization: bearer ${TOKEN}" https://${KEYCLOAK_ADDRESS}/realms/master/clients-registrations/default | jq -r .secret`
@@ -56,7 +56,7 @@ Steps:
5656
echo $SECRET
5757
```
5858

59-
2. Use the following command to create an OIDC client that uses PKCE:
59+
- Or if you are using PKCE with OIDC, use the following command to create the client:
6060

6161
```shell
6262
curl -sS -k -H "Content-Type: application/json" -H "Authorization: Bearer ${TOKEN}" \

0 commit comments

Comments
 (0)