The honeycombio_derived_column
data source retrieves the details of a single derived column.
variable "dataset" {
type = string
}
# Retrieve the details of a single derived column
data "honeycombio_derived_column" "mydc" {
dataset = var.dataset
alias = "mydc"
}
The following arguments are supported:
dataset
- (Required) The dataset this derived column is associated with. Use __all__
for Environment-wide derived columns.alias
- (Required) The alias of the columnIn addition to all arguments above, the following attributes are exported:
id
- the ID of the derived column.description
- the description of the derived columnexpression
- the expression of the derived column