From 18c8831ac76ec3edb76ca9394fce26dfee74e3b1 Mon Sep 17 00:00:00 2001 From: Vasily Angapov Date: Sun, 5 Dec 2021 21:06:48 +0800 Subject: [PATCH] Fix typo in policies.mdx Fix typo in Kubernetes policy example which prevents example from working. --- website/content/docs/concepts/policies.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/content/docs/concepts/policies.mdx b/website/content/docs/concepts/policies.mdx index e380491a4cac..4ec15dda2a2e 100644 --- a/website/content/docs/concepts/policies.mdx +++ b/website/content/docs/concepts/policies.mdx @@ -321,7 +321,7 @@ The following templated policy allow to read the path associated with the Kubernetes service account namespace of the identity: ```ruby -path "secrets/data/{{identity.entity.aliases.auth_kubernetes_xxxx.metadata.service_account_namespace}}/*" { +path "secret/data/{{identity.entity.aliases.auth_kubernetes_xxxx.metadata.service_account_namespace}}/*" { capabilities = ["read"] } ```