N1ghtF1re / terraform-provider-apgitlab

Terraform GitLab provider

Home Page:https://www.terraform.io/docs/providers/gitlab/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Terraform Provider for Gitlab

Requirements

  • Terraform 0.12.x
  • Go >= 1.14 (to build the provider plugin)

Building The Provider

Clone repository to: $GOPATH/src/github.com/gitlabhq/terraform-provider-gitlab

$ mkdir -p $GOPATH/src/github.com/gitlabhq; cd $GOPATH/src/github.com/gitlabhq
$ git clone git@github.com:gitlabhq/terraform-provider-gitlab

Enter the provider directory and build the provider

$ cd $GOPATH/src/github.com/gitlabhq/terraform-provider-gitlab
$ make build

Using the provider

Developing the Provider

If you wish to work on the provider, you'll first need Go installed on your machine (version 1.14+ is required).

To compile the provider, run make build. This will build the provider and put the provider binary in the $GOPATH/bin directory.

$ make build
...
$ $GOPATH/bin/terraform-provider-gitlab
...

Running tests

The Terraform Provider only has acceptance tests, these can run against a gitlab instance where you have a token with administrator permissions (likely not gitlab.com). There is excellent documentation on how to run gitlab from docker at gitlab.com

In order to run the full suite of acceptance tests, export the environment variables:

  • GITLAB_TOKEN //token for account with admin priviliges
  • GITLAB_BASE_URL //URL with api part e.g. http://localhost:8929/api/v4/

and run make testacc.

$ make testacc

Gitlab Community Edition and Gitlab Entreprise Edition

This module supports both Gitlab CE and Gitlab EE. We run tests on Gitlab EE, but can't run them on pull requests from forks.

Features that only work on one flavour can use the following helpers as SkipFunc: isRunningInEE and isRunningInCE. You can see an example of this for gitlab_project_push_rules tests.

About

Terraform GitLab provider

https://www.terraform.io/docs/providers/gitlab/

License:Mozilla Public License 2.0


Languages

Language:Go 98.9%Language:Shell 0.9%Language:Makefile 0.2%