What’s the best practice to provide input files to...
# ask-community
o
What’s the best practice to provide input files to a Prefect run? Should I simply upload to e.g. S3 / Azure Files and then pass a URI to the flow (a workflow parameter)? Or perhaps the
prefect
CLI has support for doing both in the same command?
1
n
do you mean just interacting with the files from the flow run? bc if so, then yeah passing a reference to the blob in question as a flow run param sounds like the way to go
o
Yeah, sending input data (e.g. a CSV / Parquet file) to a Prefect Workflow
n
yep ok I would send the reference as a parameter then 👍
o
Gotcha thanks!