mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +00:00
f810fc31e2
related to #12847 This changes the authentication method for windows mdm enrollment. We were using `HostByIndentifier ` method but have changed to `LoadHostByOrbitNodeKey`. - [x] Changes file added for user-visible changes in `changes/` or `orbit/changes/`. See [Changes files](https://fleetdm.com/docs/contributing/committing-changes#changes-files) for more information. - [x] Added/updated tests - [x] Manual QA for all new/changed functionality - For Orbit and Fleet Desktop changes: - [ ] Manual QA must be performed in the three main OSs, macOS, Windows and Linux. - [ ] Auto-update manual QA, from released version of component to new version (see [tools/tuf/test](../tools/tuf/test/README.md)).
11 lines
300 B
Go
11 lines
300 B
Go
package update
|
|
|
|
// Exported so that it can be used in tools/ (so that it can be built for
|
|
// Windows and tested on a Windows machine). Otherwise not meant to be used
|
|
// from outside this package.
|
|
type WindowsMDMEnrollmentArgs struct {
|
|
DiscoveryURL string
|
|
HostUUID string
|
|
OrbitNodeKey string
|
|
}
|