mirror of
https://github.com/siderolabs/talos.git
synced 2025-09-10 08:21:13 +02:00
Refs #2722. Co-authored-by: Andrey Smirnov <andrey.smirnov@talos-systems.com> Signed-off-by: Alexey Palazhchenko <alexey.palazhchenko@talos-systems.com>
18 lines
329 B
Protocol Buffer
18 lines
329 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package resource.secrets;
|
|
|
|
option go_package = "github.com/talos-systems/talos/pkg/machinery/api/resource/secrets";
|
|
|
|
message CertAndKeyPEM {
|
|
bytes cert = 1;
|
|
bytes key = 2;
|
|
}
|
|
|
|
// APISpec describes secrets.API.
|
|
message APISpec {
|
|
bytes ca_pem = 1;
|
|
CertAndKeyPEM server = 2;
|
|
CertAndKeyPEM client = 3;
|
|
}
|