Hi all, I'm currently using Fleet self-hosted and...
# fleet
m
Hi all, I'm currently using Fleet self-hosted and as a way to replace my compliance agent, Vanta. One issue I've run into is that I cannot reliably indicate what user is using what system. Only if they log into Google Chrome does it sometimes tag a user correctly - but not in a way that actually makes much sense for some other needs. Therefore in Vanta, while the two systems talk, it's not possible to match a user with their machine effectively which has downstream impacts. I'd like way to appropriately tag individual endpoints with users (ideally in a procedural way, but I can do manual for now), but I can't seem to find anything reliable. And ideally in a way that Vanta can then read. Any thoughts? TL;DR: I need a way to manually (or procedurally) mark each endpoint with a user without using Google Chrome as the indicator. Thanks!
j
Manual mapping is available in the API:
curl -X PUT -H "Authorization: Bearer <your_token>" -H "Content-Type: application/json" --data '{"email":"<email_to_map>"}' https://<your_fleet_instance>/api/v1/fleet/hosts/<host_number>/device_mapping
e
m
Thank you very much! Shall check this out.