You must have terraform installed. Follow these directions to install for your platform.
You will need a Honeycomb API key with the adequate permissions to create boards, queries etc.. Once you have the API key, you can set it like so:
export HONEYCOMB_API_KEY=<YOUR_API_KEY>
Or define it via the api_key variable.
Create a honeycomb.tfvars file with the following variables:
dataset = "<YOUR-METRICS-DATASET>"
Then, to run terraform plan or apply for all modules in this directory (terraform), run:
terraform init
terraform plan --var-file="honeycomb.tfvars" -out tfplan.out
terraform apply --var-file="honeycomb.tfvars"