Skip to content
Monda Help Center home
Monda Help Center home

Amazon S3 Destination

  1. Use your existing S3 Bucket or create one if needed.

  2. Create IAM Policy.

    • Define the following permissions using your bucket name and follow the IAM Policy documentation.

      { "Statement": [ { "Action": "s3:ListBucket", "Effect": "Allow", "Resource": "*" }, { "Action": [ "s3:GetObject", "s3:PutObject", "s3:DeleteObject", "s3:GetBucketLocation" ], "Effect": "Allow", "Resource": [ "arn:aws:s3:::YOUR_BUCKET_NAME", "arn:aws:s3:::YOUR_BUCKET_NAME/*" ] } ], "Version": "2012-10-17" }
  3. Create a new User.

    • Follow the steps in the User documentation and attach the IAM Policy created in the previous step.

  4. Record Credentials.

    • Securely record the Access key ID and the Secret access key for the new user.