How to make HA send iOS push notification?

automation:
  - alias: Front Door Open
    trigger:
      platform: state
      entity_id: sensor.front_door
      to: open
    action:
      service: notify.(Notify_Component)
      data:
        title: "Door Open"
        message: "Front Door Is Open"

   automation:
      - alias: Living Room Lights
        trigger:
          platform: state
          entity_id: light.living_room
          to: on
        action:
          service: notify.(Notify_Component)
          data:
            title: "Lights On"
            message: "Living Room Lights Is On"

Examples