Table: auth0_user_assigned_role - Query Auth0 User Assigned Roles using SQL
Auth0 User Assigned Roles is a feature within Auth0 that allows you to manage and assign roles to users in your applications. It provides a centralized way to manage user permissions and access to various resources in your applications. Auth0 User Assigned Roles helps you ensure the right level of access is given to the right users, thereby enhancing the security and management of your applications.
Table Usage Guide
The auth0_user_assigned_role
table provides insights into user roles within Auth0. As a security analyst, explore user-specific role details through this table, including the roles assigned to each user, and their associated permissions. Utilize it to uncover information about user access, such as users with high-level permissions, and to verify the appropriateness of assigned roles.
Examples
Admin users without MFA
Explore which admin users have not enabled multi-factor authentication. This could be useful for identifying potential security vulnerabilities within your system.
select u.email, u.id, u.updated_atfrom auth0_user u join auth0_user_assigned_role r on r.user_id = u.idwhere r.name = 'admin' and u.multifactor is null;
select u.email, u.id, u.updated_atfrom auth0_user u join auth0_user_assigned_role r on r.user_id = u.idwhere r.name = 'admin' and u.multifactor is null;
Roles a user is assigned to
Uncover the details of different roles assigned to a specific user in the system, which is crucial for managing user permissions and access control. This can be used to ensure that users have the appropriate roles for their needs and to prevent unauthorized access to certain areas of the system.
select r.role_id, r.name, r.descriptionfrom auth0_user u join auth0_user_assigned_role r on r.user_id = u.idwhere email = 'select-joey@mail.com';
select r.role_id, r.name, r.descriptionfrom auth0_user u join auth0_user_assigned_role r on r.user_id = u.idwhere email = 'select-joey@mail.com';
Schema for auth0_user_assigned_role
Name | Type | Operators | Description |
---|---|---|---|
_ctx | jsonb | Steampipe context in JSON form, e.g. connection_name. | |
description | text | A description of the role. | |
name | text | The name of the role. | |
role_id | text | A unique ID for the role. | |
user_id | text | = | A unique ID for the user. |
Export
This table is available as a standalone Exporter CLI. Steampipe exporters are stand-alone binaries that allow you to extract data using Steampipe plugins without a database.
You can download the tarball for your platform from the Releases page, but it is simplest to install them with the steampipe_export_installer.sh
script:
/bin/sh -c "$(curl -fsSL https://steampipe.io/install/export.sh)" -- auth0
You can pass the configuration to the command with the --config
argument:
steampipe_export_auth0 --config '<your_config>' auth0_user_assigned_role