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
S3 backup configuration fails with the following error when saving credentials:
Failed to Update Storage Config
failed to validate: 1 error occurred: * incorrect settings for s3 client: failed to list objects in bucket "***": operation error S3: ListObjects, https response error StatusCode: 404, RequestID: ..., api error NoSuchKey: The specified key does not exist.
Investigation & Findings
Credentials tested successfully using:
aws s3 ls s3://****/
This confirms the bucket exists and is accessible.
Issue identified with the endpoint:
Setting the endpoint to https://***.s3.us-east-1.amazonaws.com caused failures.
Setting no endpoint resulted in an invalid URI error.
Fix: Using https://s3.amazonaws.com as the endpoint resolved the issue.
Root Cause:us-east-1 is a legacy region with a region-less endpoint. The SDK should determine the endpoint automatically.
Suggested Fix
Allow AWS SDK to automatically determine the endpoint when none is provided.
Ensure that setting an explicit endpoint is only necessary for non-standard S3-compatible storage.
Expected Behavior
It to not fail.
Steps To Reproduce
Navigate to Settings > Backups in Sidero Omni.
Configure the S3 storage with the following values:
Endpoint:https://****.s3.us-east-1.amazonaws.com
Bucket:****
Region:us-east-1
Access Key ID and Secret Access Key: (valid credentials)
Click Save.
Observe the failure message indicating NoSuchKey or Custom endpoint was not a valid URI.
What browsers are you seeing the problem on?
No response
Anything else?
No response
The text was updated successfully, but these errors were encountered:
Is there an existing issue for this?
Current Behavior
S3 backup configuration fails with the following error when saving credentials:
Investigation & Findings
aws s3 ls s3://****/
https://***.s3.us-east-1.amazonaws.com
caused failures.https://s3.amazonaws.com
as the endpoint resolved the issue.us-east-1
is a legacy region with a region-less endpoint. The SDK should determine the endpoint automatically.Suggested Fix
Expected Behavior
It to not fail.
Steps To Reproduce
https://****.s3.us-east-1.amazonaws.com
****
us-east-1
NoSuchKey
orCustom endpoint was not a valid URI
.What browsers are you seeing the problem on?
No response
Anything else?
No response
The text was updated successfully, but these errors were encountered: