fleet/schema/tables/filevault_users.yml
Noah Talerman 78037e246b
Add attribution for Mac Admins tables (#19302)
- Add note for all tables
2024-05-28 12:59:35 -04:00

23 lines
No EOL
886 B
YAML

name: filevault_users
notes: This table is from the [Mac Admins osquery extension](https://github.com/macadmins/osquery-extension).
description: Information on the users able to unlock the current boot volume if protected with FileVault.
platforms:
- darwin
evented: false
examples: |-
List the usernames able to unlock and boot a computer protected by FileVault, joined to
[users.username](http://fleetdm.com/tables/users) to obtain the description of the operating
system account that owns it.
```
SELECT fu.username, u.description FROM filevault_users fu JOIN users u ON fu.uuid=u.uuid;
```
columns:
- name: username
description: Username of the FileVault user.
required: false
type: text
- name: uuid
description: UUID of the FileVault user, which can be joined to [users.uuid](http://fleetdm.com/tables/users).
required: false
type: text