Skip to content

Commit

Permalink
audit when the MFA for admin actions requirement is changed (#43245)
Browse files Browse the repository at this point in the history
Co-authored-by: Andrew LeFevre <Andrew LeFevre>
  • Loading branch information
capnspacehook authored Jun 26, 2024
1 parent 8fd29bc commit 54a9e79
Show file tree
Hide file tree
Showing 5 changed files with 1,109 additions and 953 deletions.
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 {
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

0 comments on commit 54a9e79

Please sign in to comment.