Table: make_team_variable
Team Variables are user-set variables you can use in your scenarios.
Key columns
- Provide a numeric
team_id
to query Team Variables for a specific Team. This can be either set directly in a where clause, or specified as part of join with another table.
Examples
List of all custom Team Variables available in the account
select o.name organization_name, t.name team_name, tv.name variable_name, tv.value variable_valuefrom make_organization o join make_team t on t.organization_id = o.id join make_team_variable tv on tv.team_id = t.idwhere tv.is_system = false;
List of all Bearer tokens
select o.name organization_name, t.name team_name, tv.name variable_name, tv.value variable_valuefrom make_organization o join make_team t on t.organization_id = o.id join make_team_variable tv on tv.team_id = t.idwhere tv.is_system = false and tv.value like 'Bearer %';
Schema for make_team_variable
Name | Type | Operators | Description |
---|---|---|---|
_ctx | jsonb | Steampipe context in JSON form. | |
is_system | boolean | Is the Team Variable set by Make, or by users? | |
name | text | The name of the Team Variable. | |
sp_connection_name | text | =, !=, ~~, ~~*, !~~, !~~* | Steampipe connection name. |
sp_ctx | jsonb | Steampipe context in JSON form. | |
team_id | bigint | Virtual column, used to map the entity to another object. | |
title | text | The display name for the resource. | |
type_id | bigint | Original data type of the Team Variable. | |
value | text | The value of the Team Variable, converted to string. |