Skip to content
Merged
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
25 changes: 20 additions & 5 deletions proto/spire/api/types/entry.pb.go

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

8 changes: 8 additions & 0 deletions proto/spire/api/types/entry.proto
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,14 @@ message Entry {
This is meant to prevent unnecessary effort spent on generating SVIDs of types,
which are unlikely to be needed.*/
bool disable_x509_svid_prefetch = 1;

/** Flag indicating whether SPIRE should include a unique JTI (JWT ID) claim
in JWT-SVIDs issued for this entry. When set, each JWT-SVID minted for this
entry contains a freshly generated UUID in the `jti` claim, and the agent
bypasses its JWT-SVID cache so every request yields a new token. This
supports use cases that require per-token uniqueness, such as replay
protection or auditing. */
bool jwt_svid_include_jti = 2;
}
optional AdditionalAttributes additional_attributes = 16;
}
Expand Down
Loading