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
Hello, I have same problem and I found how to do that :
In environment variables you have to modify your AWS_S3_ENDPOINT to localhost:4566.
After that you have to modify default region in aws.s3 config to set it empty (it does not works with env variable at first test). You have normally that and it will be works :
Has anyone successfully connect to localstack with this package. I tried setting endpoint_url
Sys.setenv(
"AWS_ACCESS_KEY_ID"="foo",
"AWS_SECRET_ACCESS_KEY"="bar",
"AWS_DEFAULT_REGION"="us-east-1",
"AWS_S3_ENDPOINT"="http://localhost:4566"
)
and calling bucketlist()
will return an error like this.
500 Could not resolve host: us-east-1.http
Tried various combinations for AWS_S3_ENDPOINT like
localhost:4566
localstack:4566
host.docker.internal:4566
localhost.localstack.cloud:4566
None of them seem to work.
Any help appreicated.
The text was updated successfully, but these errors were encountered: