Table: auth0_organization - Query Auth0 Organizations using SQL
An Auth0 Organization is a logical grouping of users and applications in Auth0. It represents a real-world organization, such as a company or a school, and allows for easier user management and application configuration within that organization. Organizations in Auth0 can have multiple applications, connections, and members, each with their own settings and permissions.
Table Usage Guide
The auth0_organization
table provides insights into organizations within Auth0. As a security engineer, explore organization-specific details through this table, including settings, metadata, and enabled connections. Utilize it to uncover information about organizations, such as the applications they use, the connections they have enabled, and the members who are part of the organization.
Examples
List of my organizations
Explore the organizations you're associated with, including their names, display names, and logos, to gain a better understanding of your involvement and connections. This can be particularly useful for managing and organizing various collaborations and partnerships.
select name, display_name, branding ->> 'logo_url' as logo_url, metadatafrom auth0_organizationorder by name;
select name, display_name, json_extract(branding, '$.logo_url') as logo_url, metadatafrom auth0_organizationorder by name;
Filter my organizations by metadata tags
Identify specific organizations based on their metadata tags to streamline management and cost tracking. This is useful in scenarios where organizations are categorized by unique identifiers for better financial or operational control.
select name, display_name, branding ->> 'logo_url' as logo_url, metadatafrom auth0_organizationwhere metadata ->> 'cost_id' = 'e42345'order by name;
select name, display_name, json_extract(branding, '$.logo_url') as logo_url, metadatafrom auth0_organizationwhere json_extract(metadata, '$.cost_id') = 'e42345'order by name;
Schema for auth0_organization
Name | Type | Operators | Description |
---|---|---|---|
_ctx | jsonb | Steampipe context in JSON form, e.g. connection_name. | |
branding | jsonb | Branding defines how to style the login pages | |
display_name | text | DisplayName of this organization. | |
id | text | = | Organization identifier. |
metadata | jsonb | Metadata associated with the organization. | |
name | text | Name of this organization. |
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_organization