Hello, I have this issue that I can't solve. I tried all the possible ways, but just doesn't work if I use something else than true or false for the 'enabled" value
condition: template
value_template: "{{ states('weather.home') in weather_conditions }}"
# enabled: '{{ is_auto_irm_enabled }}'
enabled: true```
and the 'is_auto_irm_enabled' is itself another template in trigger_variables :
```trigger_variables:
auto_option_weather_condition: !input auto_option_weather_condition
is_auto_irm_enabled: '{{ ''auto_using_IRM'' in auto_option_weather_condition }}'```
auto_option_weather_condition is a list selector, I tried to put the values with no quote, single quote and double quotes
I verified in the template editor and the result should just work. For what I get is that the template would always return 'false' (as the condition result is always 'null')
For now I hardcoded the value, but surely it should work (I'm using strickly the same code as from another blueprint)
Thank you for any help here