Hi everyone, Prefect version : 3.0, Server :...
# ask-community
k
Hi everyone, Prefect version : 3.0, Server : self-hosted, query :
Copy code
` "triggers": [
    {
      "type": "event",
      "posture": "Reactive",
      "expect": ["prefect.block.remote-file-system.write_path.called"],
      "match_related": {
        "prefect.resource.name": "daily-customer-export",
        "prefect.resource.role": "flow"
      }
    },
1.How do I create a 'write_path' mentioned as above in the documentation? 2.Iam trying to add a remote_path by creating a remote block, by adding a mounted efs folder(to 'basepath'), and loading that block and adding a file to that folder so that a 'basepath.called' event would occur, so that I can be sure that the file has been created , I wanted to use this event to create an automation to run the next deployment. 3.why is a 'basepath.called' event not occuring? how do I generate such an event ? 4. Also, how do I create an automation by using a 'remote-file-system.loaded' event ? what would go in the 'resource' field for an automation intended to use this event