stonedz/pff2-s3

Manages s3 storage

Installs: 55

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

Open Issues: 0

Type:pff2-module

v1.2.2 2021-08-31 14:57 UTC

This package is auto-updated.

Last update: 2024-03-29 03:01:22 UTC


README

Manages get and put operations to Amazon s3.

bucket and IAM credentials need to be created befor usage.

S3 bucket access

In order to access S3 resources use an IAM user with the following policy attached:

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