Data Source: honeycombio_slos

The SLOs data source retrieves the SLOs of a dataset, with the option of narrowing the retrieval by providing a detail_filter.

Example Usage

variable "dataset" {
  type = string
}

# returns all SLOs
data "honeycombio_slos" "all" {
  dataset = var.dataset
}

# only returns the SLOs starting with 'foo_'
data "honeycombio_slos" "foo" {
  dataset     = var.dataset

  detail_filter {
    name        = "name"
    value_regex = "foo_*"
  }
}

Argument Reference

The following arguments are supported:

To further filter the SLO results, a detail_filter block can be provided which accepts the following arguments:

Attribute Reference

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