cluster/containers/home-assistant/automations/alarm/pending.nix

26 lines
482 B
Nix
Raw Permalink Normal View History

{
alias = "Alarm - Pending";
id = "e4771f5a-1205-4fbe-9142-6a56600d7bd4";
trigger = [
{
entity_id = "alarm_control_panel.home_alarm";
from = "armed_away";
platform = "state";
to = "pending";
}
];
action = [
{
data = {
message = "Alarm Pending - Intruder Detected!";
data = {
channel = "Motion";
importance = "high";
};
};
service = "notify.mobile_app_redrum";
}
];
}