LouiseMcMahon / nodebb-plugin-s3-uploads

A plugin for NodeBB to take file uploads and store them on S3
MIT License
17 stars 23 forks source link

Need to check IAM Roles work #8

Closed LewisMcMahon closed 7 years ago

LewisMcMahon commented 8 years ago

Check if IAM roles work and if not make them then document it

jameswann commented 7 years ago

IAM roles work. I was able to create an IAM role with the following policy and get it working with uploads.

{ "Version": "2012-10-17", "Statement": [ { "Sid": "Stmt1234567890", "Effect": "Allow", "Action": [ "s3:*" ], "Resource": [ "arn:aws:s3:::bucketname/*" ] } ] }

LouiseMcMahon commented 7 years ago

Thanks :)