I have successfully connected with S3 and updraft backup but I got a problem.
S3 settings test result: Failure: Region: ap-southeast-3: We successfully accessed the bucket, but the attempt to create a file in it failed. Please check your access credentials. (UpdraftPlus_S3::putObject(): [IllegalLocationConstraintException] The ap-southeast-3 location constraint is incompatible for the region specific endpoint this request was sent to.)
Here is my policy JSON
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"s3:GetBucketLocation",
"s3:ListAllMyBuckets"
],
"Resource": "arn:aws:s3:::*"
},
{
"Effect": "Allow",
"Action": "s3:*",
"Resource": [
"arn:aws:s3:::XXX",
"arn:aws:s3:::XXX/*"
]
}
]
}
since I'm new use S3, please someone tell me what I missed here. Thank you