Skip to content

Commit

Permalink
Renames SVID Entry field from TTL to X509SvidTtl
Browse files Browse the repository at this point in the history
Per comment spiffe/spire#3445 (comment) it was decided to
1. Rename the TTL field to X509SvidTtl
2. Add the new JwtSvidTtl field

This change augments commit spiffe@3c5e450

Signed-off-by: Dennis Gove <[email protected]>
  • Loading branch information
dennisgove authored and azdagron committed Oct 28, 2022
1 parent 04fb21c commit 72b5a36
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 81 deletions.
113 changes: 46 additions & 67 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.

21 changes: 7 additions & 14 deletions proto/spire/api/types/entry.proto
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,9 @@ message Entry {
// workload attestation.
repeated spire.api.types.Selector selectors = 4;

// The time to live for identities issued for this entry (in seconds).
// This field is deprecated in favor of the x509_svid_ttl and jwt_svid_ttl
// fields and will be removed in a future release.
int32 ttl = 5;
// The time to live for X509-SVID identities issued for this entry (in seconds).
// Previously called ttl
int32 x509_svid_ttl = 5;

// The names of trust domains the identity described by this entry
// federates with.
Expand Down Expand Up @@ -56,11 +55,8 @@ message Entry {
// Determines if the issued identity is exportable to a store
bool store_svid = 12;

// The time to live for X509-SVID identities issued for this entry (in seconds), overrides ttl if set.
int32 x509_svid_ttl = 13;

// The time to live for JWT-SVID identities issued for this entry (in seconds), overrides ttl if set.
int32 jwt_svid_ttl = 14;
int32 jwt_svid_ttl = 13;
}

// Field mask for Entry fields
Expand All @@ -74,8 +70,8 @@ message EntryMask {
// selectors field mask
bool selectors = 4;

// ttl field mask
bool ttl = 5;
// x509_svid_ttl field mask
bool x509_svid_ttl = 5;

// federates_with field mask
bool federates_with = 6;
Expand All @@ -98,9 +94,6 @@ message EntryMask {
// store_svid field mask
bool store_svid = 12;

// x509_svid_ttl field mask
bool x509_svid_ttl = 13;

// jwt_svid_ttl field mask
bool jwt_svid_ttl = 14;
bool jwt_svid_ttl = 13;
}

0 comments on commit 72b5a36

Please sign in to comment.