Mutual TLS - CI/CD用語集の定義
Mutual TLS(mTLS)は、両側が証明書を提示するTLSです。クライアントがサーバーを認証し、サーバーがクライアントを認証するため、どちらも検証されていない相手とは通信しません。
なぜ重要か
mesh内のサービス間テストは、しばしばmTLSを必要とします。CIはクライアント証明書と信頼されたCAをプロビジョニングする必要があり、そうでなければアプリケーションのリクエストが行われる前にhandshakeが失敗します。
関連ガイド
Certificate Authority - CI/CD Glossary DefinitionCertificate Authority: A certificate authority (CA) is a trusted entity that signs TLS certificates. A client…
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…
Bearer Token - CI/CD Glossary DefinitionBearer Token: A bearer token is a credential sent in an `Authorization: Bearer <token>` header; whoever holds…