github honeycombio/terraform-provider-honeycombio v0.1.2

latest releases: v0.23.0, v0.22.0, v0.21.2...
3 years ago

ENHANCEMENTS:

  • data source honeycombio_query: added support for new filter ops in and not-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"
  }
}

Don't miss a new terraform-provider-honeycombio release

NewReleases is sending notifications on new releases.