Skip to content
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
9 changes: 9 additions & 0 deletions api/proto/teleport/legacy/types/types.proto
Original file line number Diff line number Diff line change
Expand Up @@ -1740,6 +1740,15 @@ message DeviceTrust {
// Mode is always "off" for OSS.
// Defaults to "optional" for Enterprise.
string Mode = 1 [(gogoproto.jsontag) = "mode,omitempty"];

// Enable device auto-enroll.
// Auto-enroll lets any user issue a device enrollment token for a known
// device that is not already enrolled.
// `tsh` takes advantage of auto-enroll to automatically enroll devices on
// user login, when appropriate.
// The effective cluster Mode still applies: AutoEnroll=true is meaningless if
// Mode="off".
bool AutoEnroll = 2 [(gogoproto.jsontag) = "auto_enroll,omitempty"];
}

// Namespace represents namespace resource specification
Expand Down
Loading