strapi-provider-upload-aws-s3-folder
TypeScript icon, indicating that this package has built-in type declarations

1.0.0 • Public • Published

strapi-provider-upload-aws-s3-build

Configurations

Your configuration is passed down to the provider. (e.g: new AWS.S3(config)). You can see the complete list of options here

See the using a provider documentation for information on installing and using a provider. And see the environment variables for setting and using environment variables in your configs.

Example

./config/plugins.js

module.exports = ({ env }) => ({
  // ...
  upload: {
    provider: 'aws-s3-custom',
    providerOptions: {
      accessKeyId: env('AWS_ACCESS_KEY_ID'),
      secretAccessKey: env('AWS_ACCESS_SECRET'),
      region: env('AWS_REGION'),
      params: {
        Bucket: env('AWS_BUCKET'),
        ACL: env('AWS_ACL'),
        folder: env('AWS_FOLDER'),
      },
    },
  },
  // ...
});

Required AWS Policy Actions

These are the minimum amount of permissions needed for this provider to work.

"Action": [
    "s3:PutObject",
    "s3:GetObject",
    "s3:ListBucket",
    "s3:DeleteObject",
    "s3:PutObjectAcl"
],

Resources

Links

Readme

Keywords

Package Sidebar

Install

npm i strapi-provider-upload-aws-s3-folder

Weekly Downloads

2

Version

1.0.0

License

ISC

Unpacked Size

8.02 kB

Total Files

8

Last publish

Collaborators

  • ntegral