Skip to content

sky-uk/terraform-provider-pulsevtm

Repository files navigation

Terraform Provider

Terraform provider for PulseVTM appliance. Since version v0.7.0, the provider has been renamed to PulseVTM from BrocadeVTM.

Requirements

  • Terraform 0.10.x
  • Go 1.8 (to build the provider plugin)

Supported Versions of Pulse vTM

As the resources vary from version to version of the traffic manager API, we have different releases for different versions

  • 5.1 , standard release chain
  • 3.8 , latest release is here

Building The Provider

Clone repository to: $GOPATH/src/github.com/sky-uk/terraform-provider-pulsevtm

$ mkdir -p $GOPATH/src/github.com/sky-uk/; cd $GOPATH/src/github.com/sky-uk/
$ git clone https://github.com/sky-uk/terraform-provider-pulsevtm

Enter the provider directory and build the provider

$ cd $GOPATH/src/github.com/sky-uk/terraform-provider-pulsevtm
$ make build

Using the provider

See the PulseVTM Provider wiki to get started using the PulseVTM 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-pulsevtm
...

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