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

audit when the MFA for admin actions requirement is changed #43245

Merged
merged 1 commit into from
Jun 26, 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
11 changes: 11 additions & 0 deletions api/proto/teleport/legacy/types/events/events.proto
Original file line number Diff line number Diff line change
Expand Up @@ -6162,6 +6162,17 @@ message AuthPreferenceUpdate {
(gogoproto.embed) = true,
(gogoproto.jsontag) = ""
];

// AdminActionsMFA indicates whether MFA for admin actions was altered
// while updating the authentication preference.
AdminActionsMFAStatus AdminActionsMFA = 5 [(gogoproto.jsontag) = "admin_actions_mfa_changed"];
}

enum AdminActionsMFAStatus {
capnspacehook marked this conversation as resolved.
Show resolved Hide resolved
ADMIN_ACTIONS_MFA_STATUS_UNSPECIFIED = 0;
ADMIN_ACTIONS_MFA_STATUS_UNCHANGED = 1;
ADMIN_ACTIONS_MFA_STATUS_ENABLED = 2;
ADMIN_ACTIONS_MFA_STATUS_DISABLED = 3;
}

// ClusterNetworkingConfigUpdate is emitted when the cluster networking config is updated.
Expand Down
Loading
Loading