Quick Start

Below is the simplest script to get started with. It:

  1. Downloads HighBond's provider
  2. Configures it with your token and organization ID
  3. 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:

# 1. Inform Terraform how to find the HighBond provider
terraform {
  required_providers {
    highbond = {
        source = "terraform-registry.highbond.com/galvanize/highbond"
        version = "2.9.3"
    }
  }
}

# 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"
}