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
6 changes: 5 additions & 1 deletion solutions/observability/synthetics/cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -290,4 +290,8 @@ npx @elastic/synthetics totp <secret> --issuer <issuer> --label <label>
: Name of the provider or service that is assocaited with the account.

`--label <string>`
: Identifier for the account. Defaults to `SyntheticsTOTP`
: Identifier for the account. Defaults to `SyntheticsTOTP`

## Air-gapped environments

When working in air-gapped environments, setup can become complex and require workarounds. One common issue is Node.js installations or containers not trusting custom certificates. To bypass certificate errors, prefix `npx` related commands with `NODE_TLS_REJECT_UNAUTHORIZED=0`. For example, `NODE_TLS_REJECT_UNAUTHORIZED=0 npx @elastic/synthetics init project-name`. This allows the command to bypass the certificate validations for all TLS connections.
Loading