Document toolboxDocument toolbox

Setup: s3 bucket setup

  1. Setup a user with the following policy.
    This example uses the bucket name kada-dev. Replace it with your bucket name.

    { "Version": "2012-10-17", "Statement": [ { "Sid": "ListObjectsInBucket", "Effect": "Allow", "Action": [ "s3:ListBucket" ], "Resource": [ "arn:aws:s3:::<kadabucket>" ] }, { "Sid": "EditObjectsInBucket", "Effect": "Allow", "Action": [ "s3:PutObject", "s3:PutObjectAcl", "s3:GetObject", "s3:GetObjectAcl", "s3:DeleteObject" ], "Resource": "arn:aws:s3:::<kadabucket>/*" } ] }