Releases: honeycombio/terraform-provider-honeycombio
Releases · honeycombio/terraform-provider-honeycombio
v0.1.1
ENHANCEMENTS:
- implemented import for
honeycombio_board
andhoneycombio_trigger
Import boards using:
$ terraform import honeycombio_board.my_board AobW9oAZX71
Import triggers using:
$ terraform import honeycombio_trigger.my_trigger my-dataset/AeZzSoWws9G
v0.1.0
NOTES:
- bumped the minor version number to v0.1.0 to indicate the resource definitions are expected to be stable at this point
ENHANCEMENTS:
- data source
honeycombio_query
: added propertiestime_range
,start_time
,end_time
andgranularity
- resource
honeycombio_board
: added propertyquery.query_style
(feature announcement)
v0.0.10
NOTES:
- this release ships several internal maintenance improvements
ENHANCEMENTS:
- resource
honeycombio_trigger
: added support forwebhook
recipient types - data source
honeycombio_trigger_recipients
: added support forwebhook
recipient types
v0.0.9
NOTES:
- data source
honeycombio_query
: deprecated thevalue
attribute of the filter block, use the new type-awarevalue_*
attributes instead.
ENHANCEMENTS:
- data source
honeycombio_query
: added type-aware filter value attributes:value_string
,value_integer
,value_float
andvalue_boolean
. Use these to ensure the type of the value matches the type of the column, otherwise the filter will not function properly.
v0.0.8
v0.0.7
NOTES:
- the
context.Context
provided by Terraform is now propagated to the Honeycomb API client, this is new in the Terraform SDK v2
ENHANCEMENTS:
- data source
honeycombio_query
: added support for specifying orders and a limit.
BUG FIXES:
- data source
honeycombio_query
: omit the column from a calculation when using COUNT, sending an empty string""
caused an error from the Honeycomb API
v0.0.6
New in v0.0.6:
- added a new data source
honeycombio_trigger_recipient
which can be used to retrieve the ID of an existing trigger recipient within a dataset
v0.0.5
No new features in v0.0.5, only a couple of internal improvements:
- upgraded the Terraform SDK to v2 as described in Terraform Plugin SDK v2 Upgrade Guide
- added a proper user agent
- added a debug mode in which all requests and responses are logged, see CONTRIBUTING.md#enabling-log-output
v0.0.4
v0.0.3
New in v0.0.3:
- url of the Honeycomb API can be configured with
api_url
on the provider block - improved the documentation