Creates a marker setting. For more information about marker settings, check out the Marker Settings API.
variable "dataset" {
type = string
}
variable "type" {
type = string
}
resource "honeycombio_marker_setting" "markerSetting" {
type = var.type
color = "#DF4661"
dataset = var.dataset
}
The following arguments are supported:
dataset
- (Required) The dataset this marker setting is placed on. Use __all__
for Environment-wide marker settings.type
- (Required) The type of the marker setting, Honeycomb.io can display markers in different colors depending on their type.color
- (Required) The color set for the marker as a hex color code (e.g. #DF4661
)In addition to all arguments above, the following attributes are exported:
id
- ID of the marker setting.created_at
- Timestamp when the marker setting was created.updated_at
- Timestamp when the marker setting was last modified.