Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add required AWS permissions for S3 bucket to docs #90

Open
fenech opened this issue Apr 11, 2019 · 0 comments
Open

Add required AWS permissions for S3 bucket to docs #90

fenech opened this issue Apr 11, 2019 · 0 comments

Comments

@fenech
Copy link
Contributor

fenech commented Apr 11, 2019

I am trying to use this resource with an S3 bucket and needed to add the required permissions to my AWS user. I got it to work by using the list of permissions mentioned on https://github.com/concourse/s3-resource:

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Sid": "SemverReadWrite",
            "Effect": "Allow",
            "Action": [
                "s3:PutObject",
                "s3:GetObject",
                "s3:ListBucket",
                "s3:PutObjectAcl"
            ],
            "Resource": [
                "arn:aws:s3:::BUCKET_NAME/*",
                "arn:aws:s3:::BUCKET_NAME"
            ]
        }
    ]
}

Perhaps this information should be included in the README?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant