From aeabec25b616179c1a834ba03e5f173199fa7133 Mon Sep 17 00:00:00 2001 From: Matheus Cruz Date: Tue, 9 Jun 2026 14:43:51 -0300 Subject: [PATCH] Fix a typo Signed-off-by: Matheus Cruz --- dsl-reference.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dsl-reference.md b/dsl-reference.md index 2a63abe7..8e417e19 100644 --- a/dsl-reference.md +++ b/dsl-reference.md @@ -1862,7 +1862,7 @@ Defines the fundamentals of an 'oauth2' authentication. | client.assertion | `string` | `no` | A JWT containing a signed assertion with your application credentials.
Required when `client.authentication` has been set to `private_key_jwt`. | | client.authentication | `string` | `no` | The client authentication method to use.
Supported values are `client_secret_basic`, `client_secret_post`, `client_secret_jwt`, `private_key_jwt` or `none`.
Defaults to `client_secret_post`. | | request.encoding | `string` | `no` | The encoding of the token request.
Supported values are `application/x-www-form-urlencoded` and `application/json`.
Defaults to application/x-www-form-urlencoded. | -| issuers | `uri-template[]` | `no` | A list that contains that contains valid issuers that will be used to check against the issuer of generated tokens. | +| issuers | `uri-template[]` | `no` | A list that contains valid issuers that will be used to check against the issuer of generated tokens. | | scopes | `string[]` | `no` | The scopes, if any, to request the token for. | | audiences | `string[]` | `no` | The audiences, if any, to request the token for. | | username | `string` | `no` | The username to use. Used only if the grant type is `Password`. |