Sunday, February 24, 2019

AWS S3: policy examples

AmazonS3ReadOnlyAccess
Provides read only access to all buckets via the AWS Management Console.
{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Effect": "Allow",
            "Action": [
                "s3:Get*",
                "s3:List*"
            ],
            "Resource": "*"
        }
    ]
}

AmazonS3FullAccess
Provides full access to all buckets via the AWS Management Console.
{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Effect": "Allow",
            "Action": "s3:*",
            "Resource": "*"
        }
    ]
}

No comments:

Post a Comment