talos/api/security/security.proto
Alexey Palazhchenko f63ab9dd9b feat: implement talosctl config new command
Refs #3421.

Signed-off-by: Alexey Palazhchenko <alexey.palazhchenko@gmail.com>
2021-06-17 09:06:43 -07:00

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;
}