Alarm_control_panel - state_changed - new_state "armed away" (or maybe "armed_away")

Trying to disable an automation or three whenever we set the alarm control panel to “Armed Away”. Trying to catch the state_changed events in Developer Tools only allows specifying the state_changed event. Unfortunately, with many different sensors and entities everywhere, state change events are rolling in continuously.

Not really certain how to properly configure the automation, either. Do know how to disable the desired automation, the action is the easy part. Captured this state changed event when the alarm control panel is disarmed:

        "new_state": {
            "entity_id": "alarm_control_panel.alarm_panel",
            "state": "disarmed",

so I’m thinking that is similar to what should be in the Trigger: portion of the automation.

Just wondering what others may have already done, if anything similar.
Thanks in advance.

If you are looking for a list of all possible state values for an alarm_control_panel entity, it can be found here:

I assume you mean you want to include a State Condition that prevents a given automation from executing its action if the alarm control panel’s state value is armed_away.

condition:
- condition: template
  value_template: "{{ states('alarm_control_panel.your_panel') != 'armed_away' }}"
1 Like

Actually, for now, just want to disable one very specific automation whenever the alarm is armed away. Plan is to re-enable it whenever an automation fires based on an RFID tag being read.