Data Source: honeycombio_columns

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

Example Usage

variable "dataset" {
  type = string
}

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

# only returns the columns starting with 'foo_'
data "honeycombio_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: