From a54fcf15488fd445891d8a4098ae7273fa2a1373 Mon Sep 17 00:00:00 2001 From: Kenneth Jenkins <51246568+kenjenkins@users.noreply.github.com> Date: Tue, 25 Aug 2026 09:26:05 -0700 Subject: [PATCH] fix a policy annotation syntax example (#2352) All the k8s object annotation values need to be strings, so we have to quote 'true' so it doesn't parse as a boolean. --- content/docs/reference/routes/allow-any-authenticated-user.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/reference/routes/allow-any-authenticated-user.mdx b/content/docs/reference/routes/allow-any-authenticated-user.mdx index 17c2f3dba..8d5951b5f 100644 --- a/content/docs/reference/routes/allow-any-authenticated-user.mdx +++ b/content/docs/reference/routes/allow-any-authenticated-user.mdx @@ -55,7 +55,7 @@ Enable **Any Authenticated User** in the **Policy Builder** in the Console: ### Examples ```yaml -ingress.pomerium.io/allow_any_authenticated_user: true +ingress.pomerium.io/allow_any_authenticated_user: 'true' ```