Skip to content

alertmixer/terraform-provider-amixr

Repository files navigation

Terraform Provider for Amixr

Requirements

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

Building The Provider

Clone repository to: $GOPATH/src/github.com/alertmixer/terraform-provider-amixr

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

Enter the provider directory and build the provider

$ cd $GOPATH/src/github.com/terraform-providers/terraform-provider-amixr
$ 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 build
...
$ $GOPATH/bin/terraform-provider-amixr
...

Running tests

In order to run the full suite of acceptance tests, you need to export your email, registered in Amixr, as the environment variable AMIXR_TEST_USER_EMAIL and then run make testacc.

$ make testacc