Answers for "aws s3 allow public access to all the resources in bucket for all types of actions"

0

aws s3 allow public access to all the resources in bucket for all types of actions

{
  "Version": "version_id",	// user defined identifier
  "Statement": [
    {
        "Sid": "some_id",	// user defined identifier
        "Effect": "Allow",
        "Principal": "*",
        "Action": "s3:*",
        "Resource": [
            "arn:aws:s3:::bucketname",
            "arn:aws:s3:::bucketname/*"
        ]
    }
  ] 
}
Posted by: Guest on March-04-2022

Code answers related to "aws s3 allow public access to all the resources in bucket for all types of actions"

Browse Popular Code Answers by Language