mirror of
https://github.com/siderolabs/talos.git
synced 2025-09-11 17:01:20 +02:00
22 lines
479 B
Protocol Buffer
22 lines
479 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package securityapi;
|
|
|
|
option go_package = "github.com/talos-systems/talos/pkg/machinery/api/security";
|
|
|
|
// The security service definition.
|
|
service SecurityService {
|
|
rpc Certificate(CertificateRequest) returns (CertificateResponse);
|
|
}
|
|
|
|
// The request message containing the process name.
|
|
message CertificateRequest {
|
|
bytes csr = 1;
|
|
}
|
|
|
|
// The response message containing the requested logs.
|
|
message CertificateResponse {
|
|
bytes ca = 1;
|
|
bytes crt = 2;
|
|
}
|