input_text: allowed_plates: name: Разрешенные номера initial: "К181КК123,А777АА777,В888ВВ777" automation: - alias: "Автоматическое открытие ворот" trigger: - platform: webhook webhook_id: alpr_gate condition: - condition: template value_template: > {{ trigger.json.plate in states('input_text.allowed_plates').split(',') }} - condition: numeric_state entity_id: sensor.confidence above: 0.8 action: - service: switch.turn_on target: entity_id: switch.gate_opener - service: notify.telegram data: message: "✅ Ворота открыты для {{ trigger.json.plate }}"