Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix issues with User Sync audit events #39830

Merged
merged 1 commit into from
Mar 28, 2024
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
8 changes: 4 additions & 4 deletions api/proto/teleport/legacy/types/events/events.proto
Original file line number Diff line number Diff line change
Expand Up @@ -5998,19 +5998,19 @@ message OktaUserSync {

// NumUsersCreated is the number of Teleport users created in this
// synchronization pass.
int32 num_users_created = 5;
int32 num_users_created = 5 [(gogoproto.jsontag) = "num_users_created"];

// NumUsersDeleted is the number of Teleport users deleted in this
// synchronization pass.
int32 num_users_deleted = 6;
int32 num_users_deleted = 6 [(gogoproto.jsontag) = "num_users_deleted"];

// NumUserModified is the number of Teleport users modified in this
// synchronization pass.
int32 num_users_modified = 7;
int32 num_users_modified = 7 [(gogoproto.jsontag) = "num_users_modified"];

// NumUsersTotal is the total number of Teleport users managed by the Okta
// integration at the end of the synchronzaton pass.
int32 num_users_total = 8;
int32 num_users_total = 8 [(gogoproto.jsontag) = "num_users_total"];
}

// SPIFFESVIDIssued is an event recorded when a SPIFFE SVID is issued.
Expand Down
Loading
Loading