This repository is a fork of gavinbunney/terraform-provider-bitbucketserver with resources that allows managing the settings of the Workzone plugin and a few more additional resources.
This terraform provider allows management of Bitbucket Server resources. The bundled terraform bitbucket provider works only for Bitbucket Cloud.
See User Guide for details on all the provided data and resource types.
provider "bitbucketserver" {
server = "https://mybitbucket.example.com"
username = "admin"
password = "password"
}
resource "bitbucketserver_project" "test" {
key = "TEST"
name = "test-01"
description = "Test project"
}
resource "bitbucketserver_repository" "test" {
project = bitbucketserver_project.test.key
name = "test-01"
description = "Test repository"
}- Terraform 0.12.x
- Go 1.11+
- correctly setup [GOPATH](http://golang.org/doc/code.html#GOPATH
- add
$GOPATH/binto your$PATH
- clone this repository to
$GOPATH/src/github.com/gavinbunney/terraform-provider-bitbucketserver
To build the provider, run make build. This will also put the provider binary in the $GOPATH/bin directory.
$ make buildIn order to test the provider, you can simply run make test.
$ make testIn order to run the full suite of acceptance tests, run make testacc-bitbucket.
$ make testacc-bitbucketAlternatively, you can manually start Bitbucket Server docker container, run the acceptance tests and then shut down the docker.
$ scripts/start-docker-compose.sh
$ make testacc
$ scripts/stop-docker-compose.shIf you try to use make testacc-bitbucket locally on MacOS, the command will fail. You can use act tool to run acceptance tests via Github actions locally:
$ act -j testacc -s DOCKERHUB_USERNAME=provide_username -s DOCKERHUB_TOKEN=provide_password$ make build
$ mkdir -p ~/.terraform.d/plugins/terraform.local/local/bitbucketserver/0.0.99/darwin_amd64/
$ cp ~/go/bin/terraform-provider-bitbucketserver ~/.terraform.d/plugins/terraform.local/local/bitbucketserver/0.0.99/darwin_amd64/Configure terraform to use the provider from local path:
terraform {
required_providers {
bitbucketserver = {
source = "terraform.local/local/bitbucketserver"
version = "0.0.99"
}
}
}