ryan-roemer / django-cloud-browser

Django application browser for cloud datastores (Rackspace, AWS, etc.).
http://ryan-roemer.github.com/django-cloud-browser/
MIT License
81 stars 27 forks source link

AWS Account name #33

Closed jwill490 closed 5 years ago

jwill490 commented 5 years ago

Hi all,

Thanks for the plugin.

I'm trying to configure this with an AWS s3 bucket and I'm a little confused about the settings terminology.

What should go with 'CLOUD_BROWSER_AWS_ACCOUNT'? Does that refer to the account name/email? Or the AWS account ID?

c-w commented 5 years ago

I'd recommend to use the libcloud backend which supports AWS S3 since this integration has been more recently maintained. The required configuration values are:

CLOUD_BROWSER_DATASTORE = "ApacheLibcloud"
CLOUD_BROWSER_APACHE_LIBCLOUD_PROVIDER = "S3"
CLOUD_BROWSER_APACHE_LIBCLOUD_ACCOUNT = "<insert s3 api key here>"
CLOUD_BROWSER_APACHE_LIBCLOUD_SECRET_KEY = "<insert s3 secret key here>"
c-w commented 5 years ago

Resolving. Please feel free to reopen if you still have questions or comments. Thanks!