You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/content/docs/secrets-store/integrations/workers.mdx
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,17 +19,17 @@ This is different from Workers [Variables and Secrets](/workers/configuration/se
19
19
20
20
- If [using the Dashboard](#via-dashboard), make sure you already have a Workers application. Refer to the [Workers get started](/workers/get-started/dashboard/) for guidance.
21
21
22
-
- You should also have a store created under the Secrets Store tab on the Dashboard.
23
-
- The first store in your account is created automatically when a user with [Super Administrator or Secrets Store Admin role](/secrets-store/access-control/) interacts with it.
24
-
- You can also use the [Wrangler command](/workers/wrangler/commands/#secrets-store-store)`secrets-store store create <name> --remote` to create your first store.
22
+
- You should also have a store created under the **Secrets Store** tab on the Dashboard. The first store in your account is created automatically when a user with [Super Administrator or Secrets Store Admin role](/secrets-store/access-control/) interacts with it.
23
+
24
+
- If no store exists in your account yet and you have the necessary permissions, you can use the [Wrangler command](/workers/wrangler/commands/#secrets-store-store)`secrets-store store create <name> --remote` to create your first store.
25
25
26
26
:::caution[Local development mode]
27
-
This guide assumes you are working in production. To use Secrets Store locally, you must use `secrets-store`[Wrangler commands](/workers/wrangler/commands/) without the `--remote` flag.
27
+
This guide assumes you are working in production. To use Secrets Store locally, you must use `secrets-store secret`[Wrangler commands](/workers/wrangler/commands/) without the `--remote` flag.
28
28
:::
29
29
30
30
## 1. Set up account secrets in Secrets Store
31
31
32
-
If there are no secrets in the store yet, follow the steps below. You must have a [Super Administrator or a Secrets Store Admin role](/secrets-store/access-control/) within your Cloudflare account.
32
+
Follow the steps below to create secrets. You must have a [Super Administrator or a Secrets Store Admin role](/secrets-store/access-control/) within your Cloudflare account.
33
33
34
34
:::note
35
35
You may also add account secrets directly from the Workers settings on the dashboard. You can skip to [step 2](#via-dashboard) to do that.
@@ -140,7 +140,7 @@ secrets_store_secrets = [
140
140
### Call `get()` on the binding variable
141
141
142
142
:::caution[Local development mode]
143
-
You cannot access production secrets (created on the dashboard, via API, or with the `--remote` flag) from your local development setup. To use Secrets Store locally, you must use [secrets-store Wrangler commands](/workers/wrangler/commands/) without the `--remote` flag.
143
+
You cannot access production secrets (created on the dashboard, via API, or with the `--remote` flag) from your local development setup. To use Secrets Store locally, you must use `secrets-store secret`[Wrangler commands](/workers/wrangler/commands/) without the `--remote` flag.
0 commit comments