Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove "quickstart" references from tutorial #2383

Merged
merged 5 commits into from
Apr 22, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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