From 2bd4b10085e7bc7f0260377aba3fa10b921fc305 Mon Sep 17 00:00:00 2001 From: greenie-msft <56556602+greenie-msft@users.noreply.github.com> Date: Wed, 21 Jul 2021 12:26:02 -0700 Subject: [PATCH] Clarify path to secrets file in getting started guides (#1585) * Clarify path to secrets file in getting started guides * Clarify path to local secret store Co-authored-by: Ori Zohar Co-authored-by: Aaron Crawfis --- .../building-blocks/secrets/howto-secrets.md | 3 +++ daprdocs/content/en/getting-started/get-started-component.md | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/daprdocs/content/en/developing-applications/building-blocks/secrets/howto-secrets.md b/daprdocs/content/en/developing-applications/building-blocks/secrets/howto-secrets.md index de8e1d221..4ada756ba 100644 --- a/daprdocs/content/en/developing-applications/building-blocks/secrets/howto-secrets.md +++ b/daprdocs/content/en/developing-applications/building-blocks/secrets/howto-secrets.md @@ -42,6 +42,9 @@ spec: Make sure to replace `` with the path to the JSON file you just created. +>Note: the path to the secret store JSON is relative to where you call `dapr run` from. + + To configure a different kind of secret store see the guidance on [how to configure a secret store]({{}}) and review [supported secret stores]({{}}) to see specific details required for different secret store solutions. ## Get a secret diff --git a/daprdocs/content/en/getting-started/get-started-component.md b/daprdocs/content/en/getting-started/get-started-component.md index 6781bac40..a8e05dc5a 100644 --- a/daprdocs/content/en/getting-started/get-started-component.md +++ b/daprdocs/content/en/getting-started/get-started-component.md @@ -55,7 +55,7 @@ spec: value: ":" ``` -You can see that the above file definition has a `type: secretstores.local.file` which tells Dapr to use the local file component as a secret store. The metadata fields provide component specific information needed to work with this component (in this case, the path to the secret store JSON) +You can see that the above file definition has a `type: secretstores.local.file` which tells Dapr to use the local file component as a secret store. The metadata fields provide component specific information needed to work with this component (in this case, the path to the secret store JSON is relative to where you call `dapr run` from.) ## Step 3: Run the Dapr sidecar