stonedz/pff2-s3

Manages s3 storage

Maintainers

Package info

github.com/stonedz/pff2-s3

Type:pff2-module

pkg:composer/stonedz/pff2-s3

Statistics

Installs: 102

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

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

This package is auto-updated.

Last update: 2026-03-01 00:20:56 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/*"]
    }
  ]
}