This is the official Terraform provider for Buildkite. The provider is listed in the Terraform Registry and supports Terraform >= 1.0.
The provider allows you to manage resources in your Buildkite organization.
Two configuration values are required:
- An API token, with
write_pipelines
,read_pipelines
andwrite_suites
REST API scopes and be enabled for GraphQL API access. You can generate one here - A Buildkite organization slug, available by signing into buildkite.com and examining the URL: https://buildkite.com/.
The reference documentation on the terraform registry is the recommended location for guidance on using this provider.
A massive thanks to Jarryd Tilbrook for authoring the original Buildkite Terraform provider.
Buildkite Terraform Provider is licensed under the MIT license.
Contributions are welcome.
If you wish to work on the provider, you'll first need Go installed on your machine (version 1.21+ is required). Dependencies are managed via gomodules and installed automatically as required.
To compile the provider:
make build
To run local tests that don't require any network access:
make test
Buildkite has two APIs: REST and GraphQL. New resources should use the GraphQL API where possible, but can fallback to the REST API for resouces or properties not yet supported by GraphQL.
The repo contains a tf-proj/ directory that can be used to quickly test a compiled version of the provider from the current branch.
-
Update tf-proj/main.tf to use the resource or property you're developing
-
Compile the provider with
make build
-
Add a
.terraformrc
configuration file to override the provider binary. See below: Overriding the provider for local development -
Run
terraform plan
in the tf-proj directoryBUILDKITE_API_TOKEN=<api-token> BUILDKITE_ORGANIZATION_SLUG=<org-slug> terraform plan
You'll need to add a provider override to your ~/.terraformrc
. Documentation around using this file can be found here. See below for an example of a .terraformrc
file set up for plugin override.
provider_installation {
dev_overrides {
"buildkite/buildkite" = "/Path/to/this/repo/directory/"
}
direct {}
}
When you run terraform
commands, you will now be using the local plugin, rather than the remote.
Acceptance tests that test the provider works against the live Buildkite API can be executed like this:
make testacc
These tests require two environment variables to run correctly:
BUILDKITE_ORGANIZATION_SLUG=<org-slug> BUILDKITE_API_TOKEN=<token> make testacc
Note that these tests make live changes to an organization and probably shouldn't be run against organizations with real data. Anyone actively developing features for this provider is welcome to request a test organization by contacting support@buildkite.com.
Also note that the CI process will not run acceptance tests on pull requests. Code reviewers will run the acceptance tests manually, and we ask that code submissions run the acceptance tests locally to confirm the tests pass before requesting a review.
Pushing a new version tag to GitHub (or creating a new release on github.com) will trigger a new build in the release pipeline. That pipeline will compile the appropriate binaries, sign them, and attach them to a draft release in https://github.com/buildkite/terraform-provider-buildkite.
Edit the draft to add in the relevant changes and click publish.
The terraform registry will detect the new release on GitHub and update their own listings.