Skip to content

Commit 65e446e

Browse files
committed
fix incorrect env variables usage
1 parent 8fe4342 commit 65e446e

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

mkdocs/docs/configuration/auth-oidc.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,8 +184,8 @@ auth:
184184
If you've configured OIDC but no system administrators, you can still use the system admin key from your initial setup for administrative tasks:
185185

186186
```bash
187-
export IONSCALE_URL="https://your-ionscale-domain.com"
188-
export IONSCALE_KEY="your-system-admin-key"
187+
export IONSCALE_ADDR="https://your-ionscale-domain.com"
188+
export IONSCALE_SYSTEM_ADMIN_KEY="your-system-admin-key"
189189
ionscale tailnet list
190190
```
191191

mkdocs/docs/getting-started/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ If you configured ionscale with a system admin key during installation, you can
3333

3434
```bash
3535
# Configure environment variables
36-
export IONSCALE_URL="https://ionscale.example.com"
37-
export IONSCALE_KEY="your-system-admin-key"
36+
export IONSCALE_ADDR="https://ionscale.example.com"
37+
export IONSCALE_SYSTEM_ADMIN_KEY="your-system-admin-key"
3838

3939
# Verify connection
4040
ionscale version
@@ -48,7 +48,7 @@ If you configured ionscale with an OIDC provider, users designated as system adm
4848

4949
```bash
5050
# Configure URL only
51-
export IONSCALE_URL="https://ionscale.example.com"
51+
export IONSCALE_ADDR="https://ionscale.example.com"
5252

5353
# Authenticate through OIDC
5454
ionscale auth login

0 commit comments

Comments
 (0)