How to Create an AWS S3 Bucket and an IAM User

This guide provides step-by-step instructions on creating an S3 bucket in AWS and an IAM user with appropriate permissions to access the bucket.

Before you begin

  • You will need an AWS Account (Create one here)

  • You need permissions in AWS to create an S3 bucket and an IAM user/policy.

Step 1: Create an S3 Bucket

  1. Navigate to S3

    • Go to the AWS Management Console.

    • In the Services menu, select S3 under Storage.

  2. Create a New Bucket

    • In the Amazon S3 dashboard, click the Create bucket button.

  3. Configure Your Bucket

    • Select the desired AWS Region.

    • Choose General purpose as the Bucket type.

    • Enter a unique Bucket name.

    • Click Next to continue.

  4. Review the Bucket

    • After creation, the bucket will be listed in the General purpose buckets section.

    • Click on the bucket name to view its details and configure additional settings.

Step 2: Create an IAM User and Policy

  1. Navigate to IAM

    • Go to the IAM Dashboard from the AWS Management Console.

    • On the left-hand menu, select Users.

  2. Create a New IAM User

    • On the Users page, click Create user.

  3. Define User Details

    • Enter a User name (e.g., my-test-bucket-user).

    • Leave console access unchecked for programmatic access only.

    • Click Next to continue.

  4. Set Permissions

    • Under Set permissions, select Attach policies directly.

    • Click Create policy to define a custom policy for S3 access.

  5. Define Permissions in the Policy

    • Choose the JSON editor to define the policy.

  6. Create the Policy

    • Name your policy (e.g., my-test-bucket-policy).

    • Use the following JSON template, replacing my-test-bucket with your bucket name:

      {
        "Version": "2012-10-17",
        "Statement": [
          {
            "Effect": "Allow",
            "Action": "s3:ListBucket",
            "Resource": "arn:aws:s3:::my-test-bucket"
          },
          {
            "Effect": "Allow",
            "Action": "s3:GetObject",
            "Resource": "arn:aws:s3:::my-test-bucket/*"
          }
        ]
      }
    • Click Create policy to finalize.

  7. Attach the Policy to the IAM User

    • Go back to the Set permissions section for the user.

    • Click the Refresh icon to load the newly created policy.

    • Search for your new policy and check the box next to its name.

    • Click Next to continue.

  8. Review and Create the User

    • On the Review and create page, check the details.

    • Click Create user.

Step 3: Generate Access Keys

  1. Find and Select the New User

    • Use the Users search box to find your newly created user.

    • Click on the user name to view the details.

  2. Open the Security Credentials Tab

    • Navigate to the Security credentials tab.

  3. Create Access Keys

    • Under Access keys, click on Create access key.

  4. Choose Use Case for the Access Key

    • Select the Application running outside AWS option.

    • Click Next to continue.

  5. Set Description Tag (Optional)

    • Optionally add a description for the access key.

    • Click Create access key.

  6. Retrieve and Store Access Keys

    • Copy the Access key and Secret access key.

    • Store them securely, as you will need these keys to access the S3 bucket programmatically.

    • You can also download the keys as a CSV file.

    • Click Done when finished.

Next Step: Configure your S3 Connector

You now have everything you need to configure an Amazon S3 connector.

Last updated