Condition Template Error

I keep getting an error with the following condition template, but it passes the template editor on the frontend. What am I doing wrong?

  condition:
    condition: template
    value_template: '{{ is_state_attr('fan.bedroom_fan', 'speed', 'low') }}'

Thank you!

Hi @tc23, use double quotes around your template.

 value_template: "{{ is_state_attr('fan.bedroom_fan', 'speed', 'low') }}"

That did it! Thank you so much!