fix(docs): MIGRATION.md 공용 인스턴스 token URL 정정 — /t/<tenantId>/oidc/token (#85) - #86
Merged
Conversation
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.
문제
MIGRATION.md가 공용 인스턴스 사용자에게 루트https://oidc-bridge.aitc.dev/oidc/token을 안내했으나, 공용 인스턴스는 tenant dispatcher라 그 경로는 404다 (라이브 확인:curl -X POST .../oidc/token→ HTTP 404). dispatcher는/t/*·/admin/*·/healthz·/.well-known/cloud-info만 라우팅한다.수정
tenant-scoped
https://oidc-bridge.aitc.dev/t/<tenantId>/oidc/token으로 정정 + 루트 마운트는 self-host 형태임을 명시. docs 가이드(oidc-bridge.mdx)·auth-setup skill과 일치.검증
/oidc/token→ 404, tenant-scoped 형태가 정답./t/<tenantId>/oidc/token이 canonical (auth-setup skill, docs guide 모두 이 형태).gap-hunt 워크플로 발견 + 독립 재현.
Closes #85