No description
  • Go 96.2%
  • HTML 2.3%
  • Shell 0.8%
  • Makefile 0.7%
Find a file
2020-09-17 16:18:15 +00:00
.github Make CoC and support channels more visible 2017-11-01 23:06:04 +01:00
profitbricks Fix: #78 (#79) 2020-09-17 14:35:38 +03:00
scripts Update gogetcookie 2019-02-27 09:46:08 +01:00
vendor S3 Keys, Backup Units support (#74) 2020-08-28 17:45:32 +03:00
website S3 Keys, Backup Units support (#74) 2020-08-28 17:45:32 +03:00
.gitignore Updates: ad .vscode to ignored paths 2020-03-06 15:35:04 +02:00
.travis.yml Updates: upgrade go version 2020-03-06 15:39:30 +02:00
CHANGELOG.md Cleanup after v1.5.7 release 2020-09-17 16:18:15 +00:00
GNUmakefile make: Add website + website-test targets 2018-04-30 08:55:41 +01:00
go.mod S3 Keys, Backup Units support (#74) 2020-08-28 17:45:32 +03:00
go.sum S3 Keys, Backup Units support (#74) 2020-08-28 17:45:32 +03:00
LICENSE initial commit 2017-06-05 20:54:02 +00:00
main.go Updates: use cloud-api v5, fix boot_image bug 2020-03-05 16:55:57 +02:00
README.md Update README.md 2020-08-28 19:44:28 +03:00

Terraform Provider

Requirements

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

NOTE: In order to use a speciffic version of this provider, please include the following block at the beginning of your terraform config files details:

provider "profitbricks" {
  version = "~> 1.5.5"
}

Building The Provider

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

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

Enter the provider directory and build the provider

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

Using the provider

See the ProfitBricks Provider documentation to get started using the ProfitBricks provider.

Developing the Provider

If you wish to work on the provider, you'll first need Go installed on your machine (version 1.8+ 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-profitbricks
...

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

$ make test

In order to run the full suite of Acceptance tests, run make testacc.

Note: Acceptance tests create real resources, and often cost money to run.

$ make testacc