turbot/supabase
steampipe plugin install supabase

Table: supabase_organization - Query Supabase Organizations using SQL

Supabase Organizations is a feature within the Supabase platform that allows users to manage multiple projects under one umbrella. It provides an efficient way to manage permissions and access for various Supabase projects. Supabase Organizations help in maintaining a structured approach to project management and access control.

Table Usage Guide

The supabase_organization table provides insights into the organizations within Supabase. As a project manager or team lead, you can explore organization-specific details through this table, including the name of the organization, the owner, and when it was created. Utilize it to manage and monitor the access and permissions of various projects under your organization.

Examples

Basic info

Explore the basic details of your Supabase organizations to understand their identity and structure. This can aid in managing your resources effectively and keeping track of your organizational units.

select
name,
id
from
supabase_organization;
select
name,
id
from
supabase_organization;

Get the count of projects per organization

Analyze the distribution of projects within your organizations. This can help you understand which organizations have the most projects, allowing you to allocate resources more effectively.

select
o.name as org_name,
count(p.id) as project_count
from
supabase_project as p
join supabase_organization as o on p.organization_id = o.id
group by
o.name;
select
o.name as org_name,
count(p.id) as project_count
from
supabase_project as p
join supabase_organization as o on p.organization_id = o.id
group by
o.name;

Schema for supabase_organization

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
idtextA unique identifier of the organization.
nametextThe display name of the 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)" -- supabase

You can pass the configuration to the command with the --config argument:

steampipe_export_supabase --config '<your_config>' supabase_organization