Data Source: honeycombio_recipients

honeycombio_recipients data source provides recipient IDs of recipients matching a set of criteria.

Example Usage

Get all recipients

data "honeycombio_recipients" "all" {}

Get all email recipients matching a specific domain

data "honeycombio_recipients" "example-dot-com" {
  type = "email"

  detail_filter {
    name        = "address"
    value_regex = ".*@example.com"
  }
}

Argument Reference

The following arguments are supported:

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

Attribute Reference