DEV Community

Piero Bozzolo
Piero Bozzolo

Posted on • Originally published at Medium

1

Configuring API Gateway for Secure S3 File Uploads: A Step-by-Step Guide

This is a reviewed version of the same previously published article on my medium page

To allow an API Gateway to upload files directly to S3, you need to create an IAM role that can be assumed by the API Gateway and has the necessary permissions to write objects to S3.

Step 1: Create the IAM Role

  1. Open the IAM service in your AWS console.
  2. Navigate to “Roles” and click “Create role.”
  3. Select “AWS service” under “Trusted entity type,” then choose “API Gateway” under “Use cases for other AWS services.”
  4. Click “Next” to proceed.

Step 2: Set Permissions for the Role

  1. After creating the role, name it (e.g., “api-gateway-s3-upload”) and click “Create role.”
  2. To add permissions, open the newly created role from the IAM Roles list.
  3. Under the “Permissions” tab, click “Add permissions” -> “Attach policies.”

  1. Filter by “S3” and select AmazonS3FullAccess.

Note: While AmazonS3FullAccess grants full S3 access, it does not adhere to the principle of least privilege. Consider creating a custom policy that only allows the PutObject action on the specific S3 bucket.

Step 3: Fine-Tuning the Permissions

To ensure compliance with the least privilege principle:

  1. Remove the AmazonS3FullAccess policy by selecting it and clicking “Remove.”
  2. Add a new inline policy by clicking “Add Permissions” -> “Create inline policy.”

  1. In the JSON tab, insert the following policy:

    {
      "Version": "2012-10-17",
      "Statement": [{
        "Effect": "Allow",
        "Action": "s3:PutObject",
        "Resource": "arn:aws:s3:::your-bucket-name/*"
      }]
    }
    
  2. Review the policy, assign it a unique name, and create it.

Conclusion

You've successfully created an IAM role with a custom policy that allows API Gateway to upload files to S3 securely. In the next part of this series, we'll explore how to configure an API that leverages this role for S3 operations.

Image of Datadog

The Essential Toolkit for Front-end Developers

Take a user-centric approach to front-end monitoring that evolves alongside increasingly complex frameworks and single-page applications.

Get The Kit

Top comments (0)

A Workflow Copilot. Tailored to You.

Pieces.app image

Our desktop app, with its intelligent copilot, streamlines coding by generating snippets, extracting code from screenshots, and accelerating problem-solving.

Read the docs

👋 Kindness is contagious

Engage with a wealth of insights in this thoughtful article, valued within the supportive DEV Community. Coders of every background are welcome to join in and add to our collective wisdom.

A sincere "thank you" often brightens someone’s day. Share your gratitude in the comments below!

On DEV, the act of sharing knowledge eases our journey and fortifies our community ties. Found value in this? A quick thank you to the author can make a significant impact.

Okay