benosman / terraform-provider-gitea

Terraform Gitea provider

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Terraform Provider

Requirements

  • Terraform 0.12.x
  • Go 1.13 (to build the provider plugin)

Building The Provider

Clone repository to: $GOPATH/src/github.com/terraform-providers/terraform-provider-gitea

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

Enter the provider directory and build the provider

$ cd $GOPATH/src/github.com/terraform-providers/terraform-provider-gitea
$ make build

Using the provider

Fill in for each provider

Developing the Provider

If you wish to work on the provider, you'll first need Go installed on your machine (version 1.11+ is required). You'll also need to correctly setup a GOPATH, as well as adding $GOPATH/bin to your $PATH.

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

$ make bin
...
$ $GOPATH/bin/terraform-provider-gitea
...

In order to test the provider, you can simply run make test.

$ make test

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

  • GITEA_TOKEN token for account with admin priviliges
  • GITEA_BASE_URL URL with api part e.g. http://localhost:3000/

and run make testacc.

$ make testacc

About

Terraform Gitea provider

License:Mozilla Public License 2.0


Languages

Language:Go 93.7%Language:Shell 3.5%Language:Makefile 2.9%