Data Source: honeycombio_derived_columns

The honeycombio_derived_columns data source allows the derived columns of a dataset to be retrieved.

Example Usage

variable "dataset" {
  type = string
}

# returns all columns
data "honeycombio_derived_columns" "all" {
  dataset = var.dataset
}

# only returns the derived columns starting with 'foo_'
data "honeycombio_derived_columns" "foo" {
  dataset     = var.dataset
  starts_with = "foo_"
}

Argument Reference

The following arguments are supported:

Attribute Reference

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