Skip to content
This repository has been archived by the owner on Apr 30, 2019. It is now read-only.

Policy for S3 access

Allan Yin edited this page Aug 27, 2018 · 3 revisions

This policy grants required permissions for accessing S3 via aws-maven wagon:

{ "Version": "2012-10-17", "Statement": [ { "Sid": "VisualEditor0", "Effect": "Allow", "Action": [ "s3:PutObject", "s3:GetObject", "s3:ListBucket", "s3:GetBucketLocation", "s3:PutObjectAcl" ], "Resource": [ "arn:aws:s3:::<your-bucket>/*", "arn:aws:s3:::<your-bucket>" ] }, { "Sid": "VisualEditor1", "Effect": "Allow", "Action": "s3:ListObjects", "Resource": "*" } ] }

Clone this wiki locally