kolide_admin_userkolide_audit_logkolide_auth_logkolide_checkkolide_deprovisioned_personkolide_devicekolide_device_groupkolide_device_group_devicekolide_device_open_issuekolide_exemption_requestkolide_issuekolide_packagekolide_personkolide_person_groupkolide_person_open_issuekolide_person_registered_devicekolide_registration_request
Table: kolide_deprovisioned_person
Lists anyone who has been removed from Kolide via SCIM.
Examples
Basic info
select name, emailfrom kolide_deprovisioned_person;
List all deprovisioned people who still have a device
select name, email, last_authenticated_atfrom kolide_deprovisioned_personwhere has_registered_device = 'true';
list all deprovisioned people who have logged in within the past week
select name, email, last_authenticated_atfrom kolide_deprovisioned_personwhere last_authenticated_at > date_trunc('day', current_date) - interval '1 week';
List all deprovisioned people who were never created
Depending on which Kolide product you use, the deprovisioned people may in fact be regular Kolide K2 users who have never been authenticated using zero-trust device authentication
select name, emailfrom kolide_deprovisioned_personwhere created_at is null;
Schema for kolide_deprovisioned_person
Name | Type | Operators | Description |
---|---|---|---|
_ctx | jsonb | Steampipe context in JSON form. | |
created_at | timestamp with time zone | When the person record was created. | |
text | =, ~~ | Recorded email address for this person. | |
has_registered_device | boolean | Whether or not this person has at least one registered device. | |
id | text | Canonical identifier for this person. | |
last_authenticated_at | timestamp with time zone | =, >, < | When the person was last authenticated with Kolide. |
name | text | =, ~~ | Canonical human name for this person. |
sp_connection_name | text | =, !=, ~~, ~~*, !~~, !~~* | Steampipe connection name. |
sp_ctx | jsonb | Steampipe context in JSON form. | |
title | text | Display name for this person. |