Resource: honeycombio_column

Provides a Honeycomb Column resource. This can be used to create, update, and delete columns in a dataset.

Example Usage

variable "dataset" {
  type = string
}

resource "honeycombio_column" "duration_ms" {
  name        = "duration_ms_log10"
  type        = "float"
  description = "Duration of the trace"

  dataset = var.dataset
}

Argument Reference

The following arguments are supported:

Attribute Reference

In addition to all arguments above, the following attributes are exported:

Import

Columns can be imported using a combination of the dataset name and their name, e.g.

$ terraform import honeycombio_column.my_column my-dataset/duration_ms