Download the binary of the provider.
Create or edit this file to specify the location of the terraform softlayer provider binary:
# ~/.terraformrc
providers {
softlayer = "/path/to/bin/terraform-provider-softlayer"
}
Go to the documentation directory.
- Ensure you have a $GOPATH environment variable set.
- Ensure you have $GOPATH/bin in your $PATH (e.g.
export PATH=$GOPATH/bin:PATH
). - Install terraform-provider-softlayer.
$ go get -u github.com/softlayer/terraform-provider-softlayer
- Get the main dependency:
$ go get github.com/hashicorp/terraform
The project will exist at $GOPATH/src/github.com/softlayer/terraform-provider-softlayer
.
make bin
make
To run the acceptance tests (warning: Requires a SoftLayer account and resources will be provisioned):
make testacc
We are using govendor to manage dependencies just like Terraform. Please see its documentation for additional help.