2023-07-21 16:21:39 +00:00
|
|
|
// Copyright (c) HashiCorp, Inc.
|
|
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
|
|
|
|
syntax = "proto3";
|
|
|
|
|
2023-08-01 17:35:17 +00:00
|
|
|
package hashicorp.consul.mesh.v1alpha1.pbproxystate;
|
2023-07-21 16:21:39 +00:00
|
|
|
|
|
|
|
import "pbresource/resource.proto";
|
|
|
|
|
|
|
|
message LeafCertificateRef {
|
|
|
|
string name = 1;
|
|
|
|
string namespace = 2;
|
|
|
|
string partition = 3;
|
|
|
|
string host = 4;
|
|
|
|
string datacenter = 5;
|
|
|
|
repeated string dns_san = 6;
|
|
|
|
}
|
|
|
|
|
|
|
|
message TrustBundleRef {
|
|
|
|
string peer = 1;
|
|
|
|
string trust_domain = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
message EndpointRef {
|
|
|
|
// id is the ServiceEndpoints resource id.
|
|
|
|
hashicorp.consul.resource.ID id = 1;
|
|
|
|
// port is the name of the port in the ServiceEndpoints to generate the Endpoints from.
|
|
|
|
string port = 2;
|
|
|
|
}
|