steampipe plugin install theapsgroup/gitlab

Table: gitlab_application

The gitlab_application table can be used to query information about OAuth applications within the GitLab instance.

THIS TABLE WILL ONLY RETURN DATA FOR ADMINISTRATORS

Examples

List all OAuth applications

select
id,
application_id,
application_name,
callback_url,
confidential
from
gitlab_application;

Schema for gitlab_application

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
application_idtextThe unique identifier of the application.
application_nametextThe display name of the application.
callback_urltextThe redirect/callback url of the application.
confidentialbooleanIndicates if the application is confidential.
idbigintThe ID of the application.