summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiogo Correia <me@diogotc.com>2025-02-15 01:44:15 +0000
committerGitHub <noreply@github.com>2025-02-15 12:44:15 +1100
commitebb760b776cc7fe8e58fbc0237f5cc03a419a6cb (patch)
tree8dbdf494b0fc6ec3e7fb7fb97701e620864ba4ae
parente0baae816c689c3f06207d30acd0fe1c863e8858 (diff)
docs(oidc): fix type of authorization_policies subject (#8741)
The type was incorrectly set as `list(string(string))`, and has been updated to `list(list(string))` to match the access control documentation. Signed-off-by: Diogo Correia <me@diogotc.com>
-rw-r--r--docs/content/configuration/identity-providers/openid-connect/provider.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/content/configuration/identity-providers/openid-connect/provider.md b/docs/content/configuration/identity-providers/openid-connect/provider.md
index 04aa369cd..e0f93dd22 100644
--- a/docs/content/configuration/identity-providers/openid-connect/provider.md
+++ b/docs/content/configuration/identity-providers/openid-connect/provider.md
@@ -427,7 +427,7 @@ The policy which is applied if this rule matches. Valid values are `one_factor`,
##### subject
-{{< confkey type="list(string(string))" required="yes" >}}
+{{< confkey type="list(list(string))" required="yes" >}}
The subjects criteria as per the [Access Control Configuration](../../security/access-control.md#subject). This must be
included for the rule to be considered valid.