steampipe plugin install marekjalovec/make

Table: make_organization_variable

Organization Variables are user-set variables you can use in your scenarios.

Key columns

  • Provide a numeric organization_id to query Organization Variables for a specific Organization. This can be either set directly in a where clause, or specified as part of join with another table.

Examples

List of all custom Organization Variables available in the account

select
o.name organization_name,
ov.name variable_name,
ov.value variable_value
from
make_organization o
join make_organization_variable ov on ov.organization_id = o.id
where
ov.is_system = false;

List of all API endpoints

select
o.name organization_name,
ov.name variable_name,
ov.value variable_value
from
make_organization o
join make_organization_variable ov on ov.organization_id = o.id
where
ov.is_system = false
and ov.value like '%api%';

Schema for make_organization_variable

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form.
is_systembooleanIs the Organization Variable set by Make, or by users?
nametextThe name of the Organization Variable.
organization_idbigintVirtual column, used to map the entity to another object.
sp_connection_nametext=, !=, ~~, ~~*, !~~, !~~*Steampipe connection name.
sp_ctxjsonbSteampipe context in JSON form.
titletextThe display name for the resource.
type_idbigintOriginal data type of the Organization Variable.
valuetextThe value of the Organization Variable, converted to string.