steampipe plugin install theapsgroup/gitlab

Table: gitlab_instance_variable

The gitlab_instance_variable table can be used to view variables that apply to the Self-Hosted GitLab instance, this feature isn't available on the public hosted GitLab & will return empty if queried there.

Examples

List variables associated with the entire instance.

select
key,
value,
variable_type,
masked,
protected,
raw
from
gitlab_instance_variable

Schema for gitlab_instance_variable

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
environment_scopetextThe environment(s) that this variable is in scope for.
keytextThe key of the variable.
maskedbooleanIndicates if the variable is masked (hidden) in job logs.
protectedbooleanIndicates if the variable is only applied to protected branches.
rawbooleanIndicates if the variable is is a raw format.
valuetextThe value of the variable.
variable_typetextThe type of the variable (env var, etc).