Creates a dataset.
resource "honeycombio_dataset" "my_dataset" {
name = "My dataset"
description = "buzzing with data"
}
The following arguments are supported:
name
- (Required) The name of the dataset.description
- (Optional) A longer description for dataset.expand_json_depth
- (Optional) The maximum unpacking depth of nested JSON fields.In addition to all arguments above, the following attributes are exported:
slug
- The slug of the dataset.created_at
- ISO8601 formatted time the column was createdlast_written_at
- ISO8601 formatted time the column was last written to (received event data)Datasets can be imported by their slug, e.g.
$ terraform import honeycombio_dataset.my_dataset my-dataset
You can find the slug in the URL bar when visiting the Dataset from the UI.