You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the commands the OP is using they are using: S3_BUCKET=us-east-1 which is the name of a region but they are specifying it as the bucket name, shouldn't they be using S3_REGION=us-east-1 ?
I've noticed I'm not able to initialize an S3 bucket in the
us-east-1
region.My
replibyte.yaml
:Running
replibyte -c replibyte.yaml dump list
withS3_BUCKET=us-east-1
results in this error:But the command works fine with
S3_BUCKET=us-east-2
and creates the bucket as expected.I've attempted a workaround (mumumumu@c6eff63), and it works, but I'm not sure if there's a better way to handle this (I'm not really a rust dev 😅).
Found this in the AWS docs:
It seems like you must not specify a region in order to create a bucket in
us-east-1
, at least with the Rust SDK.The text was updated successfully, but these errors were encountered: