Bearer Token - CI/CD用語集の定義
bearer token は、Authorization: Bearer <token> ヘッダーで送られる認証情報です。それを保持(bear)する者は誰でも使えるため、秘密に保つ必要があり、通常は短命です。
CIにおいて
自動的に提供される GITHUB_TOKEN は、workflow内のAPI呼び出しでbearer tokenとして使われます。bearer tokenは暗号化されたsecretsに置くべきで、ログに出力してはいけません。
関連ガイド
API Key - CI/CD Glossary DefinitionAPI Key: An API key is a static secret string that identifies and authorizes a caller, usually passed in a he…
Mutual TLS - CI/CD Glossary DefinitionMutual TLS: Mutual TLS (mTLS) is TLS where both sides present certificates: the client authenticates the serv…
Rate Limit Header - CI/CD Glossary DefinitionRate Limit Header: A rate limit header is an HTTP response header that reports your quota usage, commonly `X-…