StatusCake Terraform Provider

tests golangci-lint

Requirements

  • Terraform 0.13.x
  • Go 1.12 (to build the provider plugin)

Using the provider

The latest Docs can be found on the Terraform Registry.

terraform {
  required_providers {
    statuscake = {
      source = "thde/statuscake"
      version = "A.B.C"
    }
  }
}

provider "statuscake" {
  # Configuration options
}

Developing the Provider

If you wish to work on the provider, you'll first need Go.

Build

$ cd terraform-provider-statuscake
$ make build

Tests

$ cd terraform-provider-statuscake
$ make test

Lint

$ cd terraform-provider-statuscake
$ make lint