Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions src/content/docs/workers/wrangler/commands.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -1272,7 +1272,9 @@ wrangler secret:bulk [<FILENAME>] [OPTIONS]
```

- `FILENAME` <Type text="string" /> <MetaInfo text="optional" />
- A file containing either [JSON](https://www.json.org/json-en.html) or the [.env](https://www.dotenv.org/docs/security/env) format
- The JSON file containing key-value pairs to upload as secrets, in the form `{"SECRET_NAME": "secret value", ...}`.
- The `.env` file containing key-value pairs to upload as secrets, in the form `SECRET_NAME=secret value`.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

- If omitted, Wrangler expects to receive input from `stdin` rather than a file.
- `--name` <Type text="string" /> <MetaInfo text="optional" />
- Perform on a specific Worker rather than inheriting from `wrangler.toml`.
Expand Down Expand Up @@ -1458,8 +1460,6 @@ wrangler workflows trigger <WORKFLOW_NAME> <PARAMS> [OPTIONS]
wrangler workflows trigger my-workflow '{"hello":"world"}'
```

{/*

### `delete`

Delete (unregister) a Workflow.
Expand All @@ -1471,7 +1471,7 @@ wrangler workflows delete <WORKFLOW_NAME> [OPTIONS]
- `WORKFLOW_NAME` <Type text="string" /> <MetaInfo text="required" />
- The name of a registered Workflow.

*/}
\*/}

## `tail`

Expand Down Expand Up @@ -1760,7 +1760,9 @@ wrangler pages secret bulk [<FILENAME>] [OPTIONS]
```

- `FILENAME` <Type text="string" /> <MetaInfo text="optional" />
- A file containing either [JSON](https://www.json.org/json-en.html) or the [.env](https://www.dotenv.org/docs/security/env) format
- The JSON file containing key-value pairs to upload as secrets, in the form `{"SECRET_NAME": "secret value", ...}`.
- The `.env` file containing key-value pairs to upload as secrets, in the form `SECRET_NAME=secret value`.
- If omitted, Wrangler expects to receive input from `stdin` rather than a file.
- `--project-name` <Type text="string" /> <MetaInfo text="optional" />
- The name of your Pages project.
Expand Down Expand Up @@ -2052,7 +2054,9 @@ wrangler versions secret bulk <FILENAME> [OPTIONS]
```

- `FILENAME` <Type text="string" /> <MetaInfo text="optional" />
- A file containing either [JSON](https://www.json.org/json-en.html) or the [.env](https://www.dotenv.org/docs/security/env) format
- The JSON file containing key-value pairs to upload as secrets, in the form `{"SECRET_NAME": "secret value", ...}`.
- The `.env` file containing key-value pairs to upload as secrets, in the form `SECRET_NAME=secret value`.
- If omitted, Wrangler expects to receive input from `stdin` rather than a file.
- `--name` <Type text="string" /> <MetaInfo text="optional" />
- Perform on a specific Worker rather than inheriting from `wrangler.toml`.
Expand Down
Loading