steampipe plugin install grendel-consulting/kolide

Table: kolide_deprovisioned_person

Lists anyone who has been removed from Kolide via SCIM.

Examples

Basic info

select
name,
email
from
kolide_deprovisioned_person;

List all deprovisioned people who still have a device

select
name,
email,
last_authenticated_at
from
kolide_deprovisioned_person
where
has_registered_device = 'true';

list all deprovisioned people who have logged in within the past week

select
name,
email,
last_authenticated_at
from
kolide_deprovisioned_person
where
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,
email
from
kolide_deprovisioned_person
where
created_at is null;

Schema for kolide_deprovisioned_person

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form.
created_attimestamp with time zoneWhen the person record was created.
emailtext=, ~~Recorded email address for this person.
has_registered_devicebooleanWhether or not this person has at least one registered device.
idtextCanonical identifier for this person.
last_authenticated_attimestamp with time zone=, >, <When the person was last authenticated with Kolide.
nametext=, ~~Canonical human name for this person.
sp_connection_nametext=, !=, ~~, ~~*, !~~, !~~*Steampipe connection name.
sp_ctxjsonbSteampipe context in JSON form.
titletextDisplay name for this person.