Contributing to Checkly Terraform Provider
July 9, 2026 ยท View on GitHub
Learn about our Commitment to Open Source.
Hi! We are really excited that you are interested in contributing to Checkly Terraform Provider, and we really appreciate your commitment. Before submitting your contribution, please make sure to take a moment and read through the following guidelines:
- Code of Conduct
- Issue Reporting Guidelines
- Pull Request Guidelines
- Development Setup
- Scripts
- Project Structure
- Release Process
Issue Reporting Guidelines
- Always use GitHub issues to create new issues and select the corresponding issue template.
Pull Request Guidelines
-
Checkout a topic branch from a base branch, e.g.
main, and merge back against that branch. -
Make sure to tick the "Allow edits from maintainers" box. This allows us to directly make minor edits / refactors and saves a lot of time.
-
Add accompanying documentation, usage samples & test cases
-
Add/update demo files to showcase your changes.
-
Use existing resources as templates and ensure that each property has a corresponding
descriptionfield. -
Each PR should be linked with an issue, use GitHub keywords for that.
-
Be sure to follow up project code styles (
$ make fmt) -
If adding a new feature:
- Provide a convincing reason to add this feature. Ideally, you should open a "feature request" issue first and have it approved before working on it (it should has the label "state: confirmed")
- Each new feature should be linked to
-
If fixing a bug:
- Provide a detailed description of the bug in the PR. A working demo would be great!
-
It's OK to have multiple small commits as you work on the PR - GitHub can automatically squash them before merging.
-
Make sure tests pass!
-
Commit messages must follow the semantic commit messages so that changelogs can be automatically generated.
Development Setup
The development branch is main. This is the branch that all pull requests should be made against.
โ ๏ธ Before you start, is recommended to have a good understanding on how the provider works, the resources it has and its different configurations. Here are the "getting started" guides.
Pre-requirements
After you have installed Terraform and Go, you can clone the repository and start working on the main branch.
If you don't need the whole git history, you can clone with depth 1 to reduce the download size:
$ git clone --depth=1 git@github.com:checkly/terraform-provider-checkly.git
- Navigate into the project and create a new branch:
cd terraform-provider-checkly && git checkout -b MY_BRANCH_NAME
- Download go packages
$ go mod tidy
- Run build process to ensure that everything is on place
$ go build
๐ก We recommend to use tfswitch to easily manage different Terraform versions in your local environment.
You are ready to go, take a look at the dev script so you can start testing your local changes.
Scripts
In order to facilitate the development process, we have a GNUmakefile with a few scripts that are used to build, test and run working examples.
make dev
This command builds your local project and sets up the provider binary to be used in the demo directory.
$ make dev
After you run the dev script, you should be able to run terraform with the demo sample project:
- Navigate to the:
$ cd demo - Start a new terraform project
terraform init - Run
terraform planand/orterraform apply
Other useful tip for local testing/development is to override the demo/versions.tf with configuration pointing to your local environments:
terraform {
required_providers {
checkly = {
source = "dev/checkly/checkly"
version = "0.0.0-canary"
}
}
}
provider "checkly" {
api_key = "xxx"
account_id = "xxx"
api_url="http://localhost:3000" # sorry, this is only for Checkly employees ๐
}
make local-sdk
If you are also performing updates in the Checkly Go SDK (ensure to have both projects located in the same directory), you can use this script to point the provider to the local version of the Checkly Go SDK.
$ make local-sdk
make fmt
Format the code using native terraform and go formatting tools.
$ make fmt
make doc
Use terraform-plugin-docs to automatically generate resources documentation.
$ make doc
There currently isn't special support for running examples. To check that one of the examples is working, copy in provider.tf file to the particular example directory (f.ex. examples/resources/checkly_alert_channel). You can then run terraform init, terraform plan and terraform apply to test.
# provider.tf
variable "checkly_api_key" {}
variable "checkly_account_id" {}
terraform {
required_providers {
checkly = {
source = "checkly/checkly"
version = "1.6.9"
}
}
}
provider "checkly" {
api_key = var.checkly_api_key
account_id = var.checkly_account_id
}
make testacc
Run acceptance tests (all test must pass in order to merge a PR).
$ make testacc
Project Structure
-
./.github: contains github (and github actions) related files. -
./checkly: contains the provider itself. This is the most important directory and where you will be working most of the time. The fileprovideris the main entry point for the provider, then you will find some helpers and the resource files (i.e.resource_checkly.go). Note that each resource has its own_testfile (i.e.resource_checkly_test.go).
If you want to learn more about Terraform Providers and resources, here is a good place to start.
-
./demo: it is a full working sample of the provider with all the different resources. It's also used to easily try out your local changes. -
./docs: this directoy is automatically generated, please do not apply manual changes here. Runmake docin order to re-generate documentation. -
./examples: here you will find resource and provider exampels (in.tffiles). This will be use to generate docs and samples. -
./templates: contains the templates used to generate the documentation layouts. -
./tools: contains tools, scripts or utilities for development workflow.
Release Process
The release process is automatically handled with goreleaser and GitHub release action.
To trigger a new release you need to create a new git tag, using SemVer pattenr and then push it to the main branch.
Remember to create releases candidates releases and spend some time testing in production before publishin a final version. You can also tag the release as "Pre-Release" on GitHub until you consider it mature enough.