docs(ai-gateway): add data-plane auth env vars to render blueprint

This commit is contained in:
Ishaan Jaff 2026-06-24 13:19:36 -07:00
parent df0faa86e6
commit 0a977b8d1a
No known key found for this signature in database

View file

@ -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