See the examples
directory
- Clone the repository
- Enter the repository directory
- Build the provider with
make build
or invokego install
directly.
This provider uses Go modules. Please see the Go documentation for the most up to date information about using Go modules.
To add a new dependency github.com/author/dependency
to your Terraform provider:
go get github.com/author/dependency
go mod tidy
If you're building the provider, follow the instructions to install it as a plugin. After placing it into your plugins directory, run terraform init
to initialize it.
If you wish to work on the provider, you'll first need Go installed on your machine (please check the requirements before proceeding). To compile the provider, run make build
.
The GraphQL client methods are generated using the khan/genqlient library. The primary advantages are:
- Compile time query checking
- Generated full types for all API calls
Requirements:
node
andyarn
are installed
$EDITOR jupiterone/internal/client/<query source file>.graphql
# the J1 env variables and node library is only necessary to query and
# save the updated schema the first time
export JUPITERONE_ACCOUNT=:your_account_id
export JUPITERONE_API_KEY=:your_api_key
export JUPITERONE_REGION=us
yarn add graphql
make generate-client
In order to test the provider, you can simply run make testacc
. Pre-recorded
API responses (cassettes) are read in from
jupiterone/cassettes/*.yaml files and returned. When
tests are modified, the cassettes need to be re-recorded.
Note: Recording cassettes creates/updates/destroys real resources. Never run this on a production JupiterOne organization.
In order to record cassettes you need to have JUPITERONE_API_KEY
and JUPITERONE_ACCOUNT_ID
for your testing organization in your environment.
To re-record all cassettes:
export JUPITERONE_ACCOUNT_ID=your-account-id
export JUPITERONE_API_KEY=xxxxxx
export JUPITERONE_REGION=us
make cassettes
If you only need to re-record a subset of your tests, delete the related
cassette file and run the tests as usual. This takes advantage of go-vcr
s
default ModeRecordOnce
functionality.
export JUPITERONE_ACCOUNT_ID=your-account-id
export JUPITERONE_API_KEY=xxxxxx
export JUPITERONE_REGION=us
rm jupiterone/cassettes/:some-test.yaml
make testacc
To log the HTTP request and response contents, set the TF_LOG
level to DEBUG
or lower:
export TF_LOG=DEBUG
make testacc
In order to check changes you made locally to the provider, you can use the binary you just compiled by adding the following
to your ~/.terraformrc
file. This is valid for Terraform 0.14+. Please see
Terraform's documentation
for more details.
provider_installation {
# Use /home/$USER/go/bin as an overridden package directory
# for the jupiterone provider. This disables the version and checksum
# verifications for this provider and forces Terraform to look for the
# jupiterone provider plugin in the given directory.
# Replace $USER with your username. On Mac and Linux systems this can be found
# through running "echo $USER" in your terminal.
dev_overrides {
"registry.terraform.io/hashicorp/jupiterone" = "/home/$USER/go/bin"
}
# For all other providers, install them directly from their origin provider
# registries as normal. If you omit this, Terraform will _only_ use
# the dev_overrides block, and so no other providers will be available.
direct {}
}
For information about writing acceptance tests, see the main Terraform contributing guide.
This repository contains a GitHub Action configured to automatically build and
publish assets for release when a tag is pushed that matches the pattern v*
(ie. v0.1.0
).
A Goreleaser configuration is provided that produces build artifacts matching the layout required to publish the provider in the Terraform Registry.
Releases will appear as drafts. Once marked as published on the GitHub Releases page, they will become available via the Terraform Registry.
To generate new provider documentation run make docs