steampipe plugin install grendel-consulting/kolide

Table: kolide_admin_user

Lists the users with access to the Kolide dashboard. Depending on your organization's restrictions, they are able to view and manage checks, devices, users, and other settings.

Examples

Basic info

select
first_name,
last_name,
email,
access,
created_at
from
kolide_admin_user;

List all Kolide super admins

select
email
from
kolide_admin_user
where
access = 'full';

List all admins external to my company

select
first_name,
last_name,
email,
access,
created_at
from
kolide_admin_user
where
email not like '%@grendel-consulting.com';

List all admins created recently

select
first_name,
last_name,
email,
access,
created_at
from
kolide_admin_user
where
created_at > date_trunc('day', current_date) - interval '1 week';

Schema for kolide_admin_user

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form.
accesstextAccess level granted to this admin user, one of full, limited or billing.
created_attimestamp with time zone=, >, <When this admin user account was created.
emailtext=, ~~Email address for this admin user.
first_nametext=, ~~Given or first name for this admin user.
idtext=Canonical identifier for this admin user.
last_nametext=, ~~Familial or last name for this admin user.
restrictionsjsonbFeature restrictions applied to this user; this list will be empty unless the user has an access level of 'limited'.
sp_connection_nametext=, !=, ~~, ~~*, !~~, !~~*Steampipe connection name.
sp_ctxjsonbSteampipe context in JSON form.
titletextDisplay name for this admin user.