No description
  • Go 98.6%
  • HTML 0.6%
  • Shell 0.4%
  • Makefile 0.4%
Find a file
2020-07-01 12:58:55 +00:00
.github Make CoC and support channels more visible 2017-11-01 23:04:33 +01:00
circonus fix: lint 2020-06-30 14:21:53 -04:00
scripts Fix Changelog Links Script for circonus provider 2017-06-26 09:48:50 -05:00
vendor go mod vendor 2020-06-30 13:45:40 -04:00
website support for rulesetrule.windowing_min_duration through the atleast field 2020-06-26 16:35:35 -04:00
.gitignore add: .envrc 2020-04-02 12:59:38 -04:00
.go-version upd: TF plugin sdk 2019-11-26 16:02:45 -05:00
.travis.yml upd: TF plugin sdk 2019-11-26 16:02:45 -05:00
CHANGELOG.md Cleanup after v0.10.0 release 2020-07-01 12:58:55 +00:00
GNUmakefile deps: use go modules for dep mgmt 2019-03-13 15:00:45 -04:00
go.mod put back terraform-providers as module path 2020-06-26 17:05:28 -04:00
go.sum support for rulesetrule.windowing_min_duration through the atleast field 2020-06-26 16:35:35 -04:00
LICENSE initial commit 2017-06-05 20:54:03 +00:00
main.go put back terraform-providers as module path 2020-06-26 17:05:28 -04:00
README.md upd: tf v0.12+, go 1.13+, modules (GOPATH no longer required for builds) 2019-11-26 16:12:42 -05:00

Terraform Provider

Requirements

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

Building The Provider

Clone repository to a working directory.

$ git clone git@github.com:terraform-providers/terraform-provider-circonus

Enter the provider directory and build the provider

$ cd terraform-provider-circonus
$ 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.13+ is required).

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-circonus
...

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