No description
  • Go 82.9%
  • Shell 7.9%
  • Makefile 6.3%
  • HTML 2.9%
Find a file
2021-02-02 19:55:50 -05:00
.github Make CoC and support channels more visible 2017-11-01 23:06:20 +01:00
scripts Fix Changelog Links Script for statuscake provider 2017-06-26 14:00:40 -04:00
statuscake Merge pull request #36 from nauxliu/importer 2019-06-22 11:53:00 +09:00
vendor Update client dependency 2019-06-14 15:41:14 +02:00
website Merge pull request #36 from nauxliu/importer 2019-06-22 11:53:00 +09:00
.gitignore Updating Makefile + Add gitignore 2017-06-06 16:29:54 -04:00
.go-version provider: Ensured Go 1.11 in TravisCI and README 2019-02-22 18:24:17 -05:00
.travis.yml deps: use go modules for dep mgmt 2019-02-22 18:24:22 -05:00
CHANGELOG.md Cleanup after v1.0.0 release 2019-07-02 18:01:29 +00:00
GNUmakefile deps: use go modules for dep mgmt 2019-02-22 18:24:22 -05:00
go.mod Update client dependency 2019-06-14 15:41:14 +02:00
go.sum Update client dependency 2019-06-14 15:41:14 +02:00
LICENSE initial commit 2017-06-05 20:54:15 +00:00
main.go Initial transfer of provider code 2017-06-06 12:40:07 -04:00
README.md Update README.md 2021-02-02 19:55:50 -05:00

This provider has moved to https://github.com/StatusCakeDev/terraform-provider-statuscake

Terraform Provider

Requirements

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

Building The Provider

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

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

Enter the provider directory and build the provider

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

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