This is the Terraform provider for commercetools. It allows you to configure your commercetools project with infrastructure-as-code principles. The project is in development and it might not support the complete commercetools API yet, but it can be considered 'production' ready for the resource it does support.
Terraform 0.13 added support for automatically downloading providers from the terraform registry. Add the following to your terraform project
terraform {
required_providers {
commercetools = {
source = "AdikaStyle/commercetools"
}
}
}
Packages of the releases are available at https://github.com/AdikaStyle/terraform-provider-commercetools/releases See the terraform documentation for more information about installing third-party providers.
Read our documentation and check out the examples.
Clone repository to: $GOPATH/src/github.com/AdikaStyle/terraform-provider-commercetools
$ mkdir -p $GOPATH/src/github.com/AdikaStyle; cd $GOPATH/src/github.com/AdikaStyle
$ git clone git@github.com:AdikaStyle/terraform-provider-commercetools
Enter the provider directory and build the provider
$ cd $GOPATH/src/github.com/AdikaStyle/terraform-provider-commercetools
$ make build
To then locally test:
$ cp terraform-provider-commercetools ~/.terraform.d/plugins/darwin_amd64/terraform-provider-commercetools
The commercetools-go-sdk always uses the latest (master) version. To update to the latest version:
make update-sdk
There are two environment settings for troubleshooting:
TF_LOG=1
enables debug output for Terraform.CTP_DEBUG=1
enables debug output for the Commercetools GO SDK this provider uses.
Note this generates a lot of output!
When pushing a new tag prefixed with v
a GitHub action will automatically
use Goreleaser to build and release the build.
git tag <release> -m "Release <release>" # please use semantic version, so always vX.Y.Z
git push --follow-tags
$ make test
In order to run the full suite of Acceptance tests, run make testacc
.
NOTE: Acceptance tests create real resources.
Prior to running the tests provider configuration details such as access keys must be made available as environment variables.
Since we need to be able to create commercetools resources, we need the commercetools API credentials. So in order for the acceptance tests to run correctly please provide all of the following:
export CTP_CLIENT_ID=...
export CTP_CLIENT_SECRET=...
export CTP_PROJECT_KEY=...
export CTP_SCOPES=...
For convenience, place a testenv.sh
in your local
folder (which is
included in .gitignore) where you can store these environment variables.
Tests can then be started by running
$ source local/testenv.sh
$ make testacc