No description
  • Go 96.3%
  • Shell 1.5%
  • HTML 1.2%
  • Makefile 1%
Find a file
2020-04-17 13:13:54 +00:00
.github first commit 2018-10-15 16:28:20 +01:00
scripts updates for provider release 2018-12-05 14:58:08 -08:00
skytap Bumping the skytap-go-sdk version to 2.1.0 and fixing acceptance tests (#67) 2020-04-16 16:54:13 +01:00
vendor Bumping the skytap-go-sdk version to 2.1.0 and fixing acceptance tests (#67) 2020-04-16 16:54:13 +01:00
website Add timeout block to resource documentation (#66) 2020-03-27 14:25:56 +00:00
.gitignore Refactor of the base project structure 2018-10-15 16:28:21 +01:00
.go-version provider: Ensured Go 1.11 in TravisCI and README 2019-02-20 18:00:49 -05:00
.travis.yml deps: use go modules for dep mgmt 2019-02-20 18:01:10 -05:00
CHANGELOG.md Cleanup after v0.14.1 release 2020-04-17 13:13:54 +00:00
GNUmakefile Bumping the skytap-go-sdk version to 2.1.0 and fixing acceptance tests (#67) 2020-04-16 16:54:13 +01:00
go.mod Bumping the skytap-go-sdk version to 2.1.0 and fixing acceptance tests (#67) 2020-04-16 16:54:13 +01:00
go.sum Bumping the skytap-go-sdk version to 2.1.0 and fixing acceptance tests (#67) 2020-04-16 16:54:13 +01:00
LICENSE Initial commit - MPL 2.0 License 2018-10-15 07:38:51 +01:00
main.go Provider update to support v_0_12 (#51) 2020-01-09 12:48:49 +00:00
README.md updates for provider release 2018-12-05 14:58:08 -08:00

Build Status

Terraform Provider for Skytap

Maintainers

TBC

Requirements

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

Usage

provider "skytap" {
}

Building The Provider

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

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

Enter the provider directory and build the provider

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

Using the provider

If you're building the provider, follow the instructions to install it as a plugin. After placing it into your plugins directory, run terraform init to initialize it. Documentation about the provider specific configuration options can be found on the provider's website.

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 bin
...
$ $GOPATH/bin/terraform-provider-skytap
...

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