To make API requests, you must create or download a ClearBlade service account credential within your ClearBlade IoT Core Developer Portal. Once you are in the Developer Portal, add service accounts to a project and download the JSON file with your service account's credentials.
Use the provider block to configure the path to your service account's JSON file for authentication. The following environment variable can be used to set your credentials in your terminal or IDE environment:
export CLEARBLADE_CONFIGURATION=/path/to/file.json
Copy and paste this code into your Terraform configuration to install this provider, then, run terraform init
.
terraform {
required_providers {
clearblade = {
source = "ClearBlade/clearblade"
version = "x.y.z" # Check out the latest version in the release section
}
}
}
provider "clearblade" {
# Configuration options
credentials = "path-to-clearblade-credentials-auth-file"
project = "your-gcp-project-id"
region = "your-gcp-region"
}
Terraform allows you to use local provider builds by setting a dev_overrides
block in a configuration file called .terraformrc
. This block overrides all other configured installation methods.
Terraform searches for the .terraformrc
file in your home directory and applies any configuration settings you set.
provider_installation {
dev_overrides {
"registry.terraform.io/ClearBlade/clearblade" = "<PATH>"
}
# 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 no other providers will be available.
direct {}
}
Your <PATH>
may vary depending on how your Go environment variables are configured. Execute go env GOBIN
to set them, then set the <PATH>
to the value returned. If nothing is returned, set it to the default location, $HOME/go/bin
.
To create a new release, execute the following commands:
# Use sem var for tags, i.e. v0.0.1
git tag [tag]
git push origin [tag]
While we value open-source contributions to this SDK, this library is generated programmatically. Feel free to open a PR or a Github issue as a proof of concept, and we'll do our best to include it in a future release!