- Get started →
- Documentation: Table definitions & examples
- Community: Join #steampipe on Slack →
- Get involved: Issues
Install the plugin with Steampipe:
steampipe plugin install theapsgroup/gitlabConfigure the plugin using the configuration file:
vi ~/.steampipe/gitlab.spcOr environment variables:
export GITLAB_TOKEN=f7Ea3C3ojOY0GLzmhS5kEStart Steampipe:
steampipe queryRun a query:
select
full_path,
visibility,
forks_count,
star_count
from
gitlab_my_project;Prerequisites:
- Steampipe
- Golang
- GitLab (either hosted or self-hosted)
- GitLab Token (either private or personal access token)
Clone:
git clone https://github.com/theapsgroup/steampipe-plugin-gitlab.git
cd steampipe-plugin-gitlabBuild, which automatically installs the new version to your ~/.steampipe/plugins directory:
makeConfigure the plugin:
cp config/* ~/.steampipe/config
vi ~/.steampipe/config/gitlab.spcTry it!
steampipe query
> .inspect gitlabFurther reading:
All contributions are subject to the Apache 2.0 open source license.
help wanted issues:
GitLab API Wrapper xanzy/go-gitlab (licensed separately using this Apache License)
