ENHANCEMENTS:
- data source
honeycombio_query
: added support for new filter opsin
andnot-in
(feature announcement)
Example of using in
and not-in
:
data "honeycombio_query" "example" {
filter {
column = "app.tenant"
op = "in"
value_string = "foo,bar" # op 'in' expects a list of values
}
filter {
column = "request.method"
op = "not-in"
value_string = "GET,HEAD"
}
}