Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
74 changes: 49 additions & 25 deletions proto/spire/api/types/bundle.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions proto/spire/api/types/bundle.proto
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@ message X509Certificate {

// This authority is no longer secure and must not be used.
bool tainted = 2;

// Optional. A hint on where the certificate came from. This is not intended to be
// parsed by SPIRE, but rather to be used by the API consumer to determine
// how to interpret the certificate.
string hint = 3;
}

message JWTKey {
Expand All @@ -41,6 +46,11 @@ message JWTKey {

// This authority is no longer secure and must not be used
bool tainted = 4;

// Optional. A hint on where the certificate came from. This is not intended to be
// parsed by SPIRE, but rather to be used by the API consumer to determine
// how to interpret the jwt key.
string hint = 5;
}

message BundleMask {
Expand Down