mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-13 23:11:40 +00:00
docs(ai-gateway): add data-plane auth env vars to render blueprint
This commit is contained in:
parent
df0faa86e6
commit
0a977b8d1a
1 changed files with 10 additions and 1 deletions
|
|
@ -27,9 +27,18 @@ services:
|
|||
value: /app/config.yaml
|
||||
- key: HOST
|
||||
value: 0.0.0.0
|
||||
# Bearer token clients must send on /v1/realtime (fail closed if unset).
|
||||
# Admin bearer token, checked locally (no proxy call). Fail closed if unset.
|
||||
- key: LITELLM_MASTER_KEY
|
||||
sync: false
|
||||
# Delegate virtual-key auth to the LiteLLM proxy (see README → "Authentication").
|
||||
# Dedicated secret authenticating the gateway to the proxy's verify endpoint;
|
||||
# must match the proxy's LITELLM_DATA_PLANE_KEY. NOT the master key.
|
||||
- key: LITELLM_DATA_PLANE_KEY
|
||||
sync: false
|
||||
# The proxy's internal verify endpoint, e.g.
|
||||
# https://<proxy-host>/internal/v1/auth/verify
|
||||
- key: LITELLM_AUTH_VERIFY_URL
|
||||
sync: false
|
||||
# Referenced by config.yaml as os.environ/OPENAI_API_KEY for the upstream dial.
|
||||
- key: OPENAI_API_KEY
|
||||
sync: false
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue