From 4976d33b01e6eda378aa4f18fa373a623848d27d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Bj=C3=B6rkstr=C3=B6m?= Date: Fri, 19 Feb 2021 15:22:57 +0200 Subject: [PATCH] Update output for Getting a secret Indicate that the response is JSON and not plain text. --- daprdocs/content/en/getting-started/get-started-component.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/daprdocs/content/en/getting-started/get-started-component.md b/daprdocs/content/en/getting-started/get-started-component.md index ef9d3038a..73c13bdfd 100644 --- a/daprdocs/content/en/getting-started/get-started-component.md +++ b/daprdocs/content/en/getting-started/get-started-component.md @@ -86,8 +86,8 @@ Invoke-RestMethod -Uri 'http://localhost:3500/v1.0/secrets/my-secret-store/my-se You should see output with the secret you stored in the JSON file. -``` -"I'm Batman" +```json +{"my-secret":"I'm Batman"} ``` Next step: Explore Dapr quickstarts >>