Skip to content

Commit

Permalink
Remove "quickstart" references from tutorial (#2383)
Browse files Browse the repository at this point in the history
* remove quickstart references

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* Update daprdocs/content/en/getting-started/tutorials/get-started-component.md

* Update daprdocs/content/en/getting-started/tutorials/get-started-component.md

Co-authored-by: Mark Fussell <markfussell@gmail.com>
  • Loading branch information
hhunter-ms and msfussell committed Apr 22, 2022
1 parent b4ba8ee commit a077ff6
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
---
type: docs
title: "Quickstart: Define a component"
title: "Define a component"
linkTitle: "Define a component"
weight: 70
description: "Create a component definition file to interact with the Secrets building block"
description: "Create a component definition file to interact with the secrets building block"
---

When building an app, you'd most likely create your own component file definitions, depending on the building block and specific component that you'd like to use.

In this quickstart, you will create a component definition file to interact with the [Secrets building block]({{< ref secrets >}}):
In this tutorial, you will create a component definition file to interact with the [secrets building block API]({{< ref secrets >}}):

- Create a local JSON secret store.
- Register the secret store with Dapr using a component definition file.
- Obtain the secret using the Dapr HTTP API.

## Step 1: Create a JSON secret store

Dapr supports [many types of secret stores]({{< ref supported-secret-stores >}}), but for this quickstart, create a local JSON file named `mysecrets.json` with the following secret:
Dapr supports [many types of secret stores]({{< ref supported-secret-stores >}}), but for this tutorial, create a local JSON file named `mysecrets.json` with the following secret:

```json
{
Expand Down

0 comments on commit a077ff6

Please sign in to comment.