Flutterby™! : AWS woes

Next unread comment / Catchup all unread comments User Account Info | Logout | XML/Pilot/etc versions | Long version (with comments) | Weblog archives | Site Map | | Browse Topics

AWS woes

2021-06-21 19:02:03.444865+02 by Dan Lyke 1 comments

Aaaarg! I have the AWS CLI (aws-cli/2.2.13 Python/3.8.8 Linux/5.4.0-74-generic exe/x86_64.ubuntu.20 prompt/off) installed. I have a ~/.aws/config that looks like:

[plugins]
endpoint = awscli_plugin_endpoint
cli_legacy_plugin_path = /home/danlyke/.local/lib/python3.8/site-packages/

[scaleway]
region = nl-ams
s3 =
  endpoint_url = https://s3.nl-ams.scw.cloud
  signature_version = s3v4
  max_concurrent_requests = 100
  max_queue_size = 1000
  multipart_threshold = 50MB
  # Edit the multipart_chunksize value according to the file sizes that you want to upload. The present configuration allows to upload files up to 10 GB (100 requests * 10MB). For example setting it to 5GB allows you to upload files up to 5TB.
  multipart_chunksize = 10MB
s3api =
  endpoint_url = https://s3.nl-ams.scw.cloud

[amazon]
region = us-east-1
[profile scaleway]
s3 =
    endpoint_url = https://s3.nl-ams.scw.cloud

The command:

aws s3 --profile scaleway ls

Results in:

Could not connect to the endpoint URL: "https://s3.nl-ams.amazonaws.com/"

Even the command:

aws s3 --endpoint-url https://s3.nl-ams.scw.cloud --profile scaleway ls

Results in the same thing. export | grep AWS has no output.

I could swear this worked once, but I cannot get it working now.

[ related topics: Free Software Books Open Source Work, productivity and environment Monty Python Python ]

comments in ascending chronological order (reverse):

#Comment Re: AWS woes made: 2021-06-22 04:29:18.673441+02 by: meuon

Will stare at this in the AM. Sober. I've had issues with different versions of the AWS CLI having different features, or different implementations of them.