Below is the simplest script to get started with. It:
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"
}