Quick Start
Below is the simplest script to get started with. It:
- Downloads HighBond's provider
- Configures it with your token and organization ID
- Creates a HighBond resource (e.g. Collection)
To use different regions, you'll want to update your base_url
to one of the valid options:
- https://apis-us.highbond.com/v1
- https://apis-eu.highbond.com/v1
- https://apis-ca.highbond.com/v1
- https://apis-ap.highbond.com/v1
- https://apis-au.highbond.com/v1
- https://apis-sa.highbond.com/v1
- https://apis-af.highbond.com/v1
# 1. Inform Terraform how to find the HighBond provider
terraform {
required_providers {
highbond = {
source = "terraform-registry.highbond.com/galvanize/highbond"
version = "2.9.2"
}
}
}
# 2. Specify HighBond settings
provider highbond {
access_token = "your highbond token"
org_id = "your org id"
base_url = "https://apis-us.highbond.com/v1"
}
# 3. Use it :)
resource highbond_collection main {
name = "Testing Terraform Registry"
}