Patrick Tan
05/04/2022, 1:47 PMfrom prefect import Flow
from prefect.storage import S3
flow = Flow("s3-flow", storage=S3(bucket="<my-bucket>"))
Kevin Kho
aws configure
and add your info there,
On the pull, you can use secrets. There is a default secret for AWS_CREDENTIALS
that Prefect can use for AWS connections listed hereAnna Geller
Patrick Tan
05/05/2022, 12:44 PMAnna Geller