I have the following automation that enables a scene based on the currently selected value of a dropdown helper.
action: scene.turn_on
target:
entity_id: "{{ states('input_select.active_scene') }}"
data: {}
I want to expand this further by making the input dropdown to use variable as well by adding it as a field in a script. But I can't seem to figure out how to point to a dynamic input helper.
How would I do this?