/pff2-s3

Pff2 module to access Amazon s3 storage

Primary LanguagePHPMIT LicenseMIT

Pff2 s3 module

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/*"]
    }
  ]
}