1
Retrieve Your S3 Credentials
Once your storage bucket is provisioned, you will receive an Access Key ID, Secret Access Key, and primary S3 Endpoint URL.
Once your storage bucket is provisioned, you will receive an Access Key ID, Secret Access Key, and primary S3 Endpoint URL.
Run `aws configure` in your terminal and enter your keys. To list buckets, pass the endpoint URL:
aws configure
# Enter Access Key, Secret Key, and Region
# Test connection:
aws s3 ls --endpoint-url https://YOUR_S3_ENDPOINTAdd a remote in rclone.conf under s3 provider type with your custom endpoint URL.
[hubforhost-s3]
type = s3
provider = Other
env_auth = false
access_key_id = YOUR_ACCESS_KEY
secret_access_key = YOUR_SECRET_KEY
endpoint = https://YOUR_S3_ENDPOINT