You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the service client used for bundle downloading, status reporting, and decision log uploading only supports bearer tokens for authentication. Some users would prefer to rely on client certificates.
The credentials configuration could be extended to include a "client_tls" key:
Service clients are instantiated from configuration here. To implement this enhancement, we need to extend the client configuration defined earlier in that file with the client TLS parameters defined above. The validation step should load and parse files from disk (returning errors if necessary). In addition, the HTTP client used internally will need to configured with the TLS certificates.
The text was updated successfully, but these errors were encountered:
Adds support for usings client certificates to authenticate against
service endpoints. It also enables users to allow insecure TLS
connections to service endpoints.
Fixesopen-policy-agent#684
Signed-off-by: Kim Christensen <[email protected]>
Adds support for usings client certificates to authenticate against
service endpoints. It also enables users to allow insecure TLS
connections to service endpoints.
Fixes#684
Signed-off-by: Kim Christensen <[email protected]>
Currently the service client used for bundle downloading, status reporting, and decision log uploading only supports bearer tokens for authentication. Some users would prefer to rely on client certificates.
The credentials configuration could be extended to include a "client_tls" key:
Service clients are instantiated from configuration here. To implement this enhancement, we need to extend the client configuration defined earlier in that file with the client TLS parameters defined above. The validation step should load and parse files from disk (returning errors if necessary). In addition, the HTTP client used internally will need to configured with the TLS certificates.
The text was updated successfully, but these errors were encountered: