Nathaniel Russell
09/06/2022, 8:11 PMError downloading Flow from S3: An error occurred (AccessDenied) when calling the GetObject operation: Access Denied
I keep getting this error when flows are supposed to download their definitions from storage. I have both a prefect user and prefect role specified in the bucket's policy.Anna Geller
s3 = S3(
bucket_path="prefect-orion/prod",
aws_access_key_id="xxx",
aws_secret_access_key="xxx",
)
s3.save("prod")
Nathaniel Russell
09/06/2022, 9:00 PMAnna Geller