Hand Claude Code a gateway token, not an API key - #185
Open
vitramir wants to merge 1 commit into
Open
Conversation
An API key is consent-gated: the CLI stops and asks whether to trust the key it found in its environment, which in a workload nobody is there to answer. ANTHROPIC_AUTH_TOKEN is the variable meant for a proxy standing in front of the vendor and carries no such prompt. The value is unused either way. The proxy authorizes the workload's OpenZiti identity, not anything sent in a header.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Platform-mode workloads stop on first run with:
agyndwrites that variable into~/.claude/settings.jsonto satisfy the CLI's demand for a credential. But an API key is consent-gated: the CLI records approvals incustomApiKeyResponsesand blocks until someone answers — and in a workload nobody is there to. Suppressing one prompt bought another.ANTHROPIC_AUTH_TOKENsatisfies the same requirement (ANTHROPIC_API_KEY, ANTHROPIC_AUTH_TOKEN, CLAUDE_CODE_OAUTH_TOKEN, or WIF env vars required) and is the variable meant for a gateway in front of the vendor — the CLI refers to it as "the gateway token provided via ANTHROPIC_AUTH_TOKEN". OnlyANTHROPIC_API_KEYis consent-gated.The value is unused either way: the LLM Proxy authorizes the workload's OpenZiti identity, not a header. Native mode is unaffected — it sets neither.