I am trying to publish a payload to a MQTT topic defined in the MQTT connection. However, I get this error in the enforcement log: -
Ran into a failure when enforcing incoming signal: The configured filters could not be matched against the given target with ID 'mqttTestTopic'. Either modify the configured filter or ensure that the message is sent via the correct ID. ...
What is required: -
"enforcement": {
"input": "{{ source:address }}",
"filters": [
"'"${TTN_APP_ID}"'/devices/{{ thing:name }}/up"
]
}
What I have tried: -
"enforcement": {
"input": "mqttTestTopic",
"filters": [
"mqttTestTopic/org.eclipse.ditto.testing.demo:digital-twin"
]
}
I am confused about what must be defined in the input and filters. Can I get more clarification?