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_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_atfrom kolide_admin_user;
List all Kolide super admins
select emailfrom kolide_admin_userwhere access = 'full';
List all admins external to my company
select first_name, last_name, email, access, created_atfrom kolide_admin_userwhere email not like '%@grendel-consulting.com';
List all admins created recently
select first_name, last_name, email, access, created_atfrom kolide_admin_userwhere created_at > date_trunc('day', current_date) - interval '1 week';
Schema for kolide_admin_user
Name | Type | Operators | Description |
---|---|---|---|
_ctx | jsonb | Steampipe context in JSON form. | |
access | text | Access level granted to this admin user, one of full, limited or billing. | |
created_at | timestamp with time zone | =, >, < | When this admin user account was created. |
text | =, ~~ | Email address for this admin user. | |
first_name | text | =, ~~ | Given or first name for this admin user. |
id | text | = | Canonical identifier for this admin user. |
last_name | text | =, ~~ | Familial or last name for this admin user. |
restrictions | jsonb | Feature restrictions applied to this user; this list will be empty unless the user has an access level of 'limited'. | |
sp_connection_name | text | =, !=, ~~, ~~*, !~~, !~~* | Steampipe connection name. |
sp_ctx | jsonb | Steampipe context in JSON form. | |
title | text | Display name for this admin user. |