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
Per the docs, the dataset rules "can be a constant (string, number, etc) or a "jqQuery" object." However, only jqQuery is supported.
Reproduce
Copy the terraform code block docs, copied below for convenience:
resource"port_action""myAction" {
# ...action propertiesuser_properties={
string_props = {
"namespace"= {
format ="entity"
blueprint ="namespace"
dataset = {
combinator ="and"
rules = [
{
property ="$team"
operator ="containsAny"
value ="value here. this can also be a 'jqQuery' object"
}
]
}
}
}
}
}
Run terraform plan and you get the following error: Inappropriate value for attribute "self_service_trigger": attribute "user_properties": attribute "string_props": element "namespace": attribute "dataset": attribute "rules": element 0: attribute "value": object required.
The text was updated successfully, but these errors were encountered:
Overview
Per the docs, the dataset rules "can be a constant (string, number, etc) or a "jqQuery" object." However, only jqQuery is supported.
Reproduce
Copy the terraform code block docs, copied below for convenience:
Run
terraform plan
and you get the following error:Inappropriate value for attribute "self_service_trigger": attribute "user_properties": attribute "string_props": element "namespace": attribute "dataset": attribute "rules": element 0: attribute "value": object required.
The text was updated successfully, but these errors were encountered: