terraform-provider-honeycombio

Terraform provider for Honeycomb.

Acceptance tests

Fill out the values in .env and configure a Terraform version in .tool-versions then, using asdf and fish:

fish_add_path -Pp (dirname (asdf which terraform))
eval (awk '{print "export "$0}' <.env)

Ensure your test dataset contains the required columns by pushing events (with httpie):

http POST https://api.honeycomb.io/1/events/$HONEYCOMBIO_DATASET \
  Content-Type:application/json \
  X-Honeycomb-Team:$HONEYCOMBIO_APIKEY \
  'duration_ms=123' \
  'column_1=456' \
  'column_2=789'

You should now be able to run:

make testacc

Backlinks