feat: add Windows environment variable instructions for INFLUXDB3_AUTH_TOKEN

Co-authored-by: jstirnaman <212227+jstirnaman@users.noreply.github.com>
copilot/fix-6290
copilot-swe-agent[bot] 2025-08-21 14:07:47 +00:00
parent 429eea917b
commit 182f346a4b
1 changed files with 30 additions and 0 deletions

View File

@ -486,6 +486,14 @@ In your command, replace {{% code-placeholder-key %}}`YOUR_AUTH_TOKEN`{{% /code-
Set the `INFLUXDB3_AUTH_TOKEN` environment variable to have the CLI use your
token automatically:
{{< tabs-wrapper >}}
{{% tabs %}}
[macOS and Linux](#)
[PowerShell](#)
[CMD](#)
{{% /tabs %}}
{{% tab-content %}}
{{% code-placeholders "YOUR_AUTH_TOKEN" %}}
```bash
export INFLUXDB3_AUTH_TOKEN=YOUR_AUTH_TOKEN
@ -495,6 +503,28 @@ export INFLUXDB3_AUTH_TOKEN=YOUR_AUTH_TOKEN
{{% /tab-content %}}
{{% tab-content %}}
{{% code-placeholders "YOUR_AUTH_TOKEN" %}}
```powershell
$env:INFLUXDB3_AUTH_TOKEN = "YOUR_AUTH_TOKEN"
```
{{% /code-placeholders %}}
{{% /tab-content %}}
{{% tab-content %}}
{{% code-placeholders "YOUR_AUTH_TOKEN" %}}
```cmd
set INFLUXDB3_AUTH_TOKEN=YOUR_AUTH_TOKEN
# Make sure to include a space character at the end of this command.
```
{{% /code-placeholders %}}
{{% /tab-content %}}
{{< /tabs-wrapper >}}
{{% /tab-content %}}
{{% tab-content %}}
Include the `--token` option with CLI commands:
{{% code-placeholders "YOUR_AUTH_TOKEN" %}}