Creates a marker. For more information about markers, check out Annotate the timeline with Markers.
variable "dataset" {
type = string
}
variable "app_version" {
type = string
}
resource "honeycombio_marker" "marker" {
message = "deploy ${var.app_version}"
type = "deploy"
url = "http://www.example.com/"
dataset = var.dataset
}
The following arguments are supported:
dataset
- (Required) The dataset this marker is placed on. Use __all__
for Environment-wide markers.message
- (Optional) The message on the marker.type
- (Optional) The type of the marker, Honeycomb.io can display markers in different colors depending on their type.url
- (Optional) A target for the Marker. If you click on the Marker text, it will take you to this URL.In addition to all arguments above, the following attributes are exported:
id
- ID of the marker.