Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
  1. Setup a user with the following policy.
    This example uses the bucket name kada-dev. Replace it with your bucket name.

    Code Block
    {
        "Version": "2012-10-17",
        "Statement": [
            

...

  1. {
                "Sid": "ListObjectsInBucket",
                "Effect": "Allow",
                "Action": [
                    "s3:ListBucket"
                ],
                "Resource": [
                    "arn:aws:s3:::

...

  1. <kadabucket>"
                ]
            },
            {
                "Sid": "EditObjectsInBucket",
                "Effect": "Allow",
                "Action": [
                    "s3:PutObject",
                    "s3:

...

  1. PutObjectAcl",
                    "s3:

...

  1. GetObject",
                    "s3:

...

  1. GetObjectAcl",
                

...

  1.     "s3:DeleteObject"
            

...

  1.  

...

  1.    ],
                "Resource": "arn:aws:s3:::

...

  1. <kadabucket>/*"

...

  1. 
            

...

  1. }
        ]
    }

...