You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
I need to create a color field format for a particular data view. The correct field type is set as color but the color details are not. It seems it is not supported at all as the plan shows empty params.
To Reproduce
Use the elasticstack_kibana_data_view resource:
resource "elasticstack_kibana_data_view" "test" {
data_view = {
name = "logs-*"
title = "logs-*"
id = "logs-*"
time_field_name = "@timestamp"
field_formats = {
"my.field" = {
id = "color"
params = {
fieldType = "string"
colors = [
{
range = "-Infinity:Infinity",
regex = "Completed",
text = "#000000",
background = "#54B399"
}
]
}
}
}
}
space_id = "default"
}
Describe the bug
I need to create a color field format for a particular data view. The correct field type is set as color but the color details are not. It seems it is not supported at all as the plan shows empty params.
To Reproduce
Use the elasticstack_kibana_data_view resource:
Run a plan and notice that params is empty
Expected behavior
The correct color details should be applied.
Versions (please complete the following information):
The text was updated successfully, but these errors were encountered: