Skip to content

Commit

Permalink
audit when the MFA for admin actions requirement is changed (#44185)
Browse files Browse the repository at this point in the history
  • Loading branch information
capnspacehook authored Jul 15, 2024
1 parent d52bd2d commit 83984b1
Show file tree
Hide file tree
Showing 5 changed files with 1,102 additions and 946 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 @@ -6222,6 +6222,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 83984b1

Please sign in to comment.