Socket
Socket
Sign inDemoInstall

@things-factory/attachment-base

Package Overview
Dependencies
10
Maintainers
10
Versions
737
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @things-factory/attachment-base

Server-side module for handling upload attachment. S3 Bucket and local folder attachment.


Version published
Weekly downloads
1.2K
increased by41.9%
Maintainers
10
Created
Weekly downloads
 

Readme

Source

Creating S3 Bucket and Access Key Pair

In my opinion, it is better to have unique s3 bucket and aws permissions for each project. This document is for initial s3 configuration of the project you will be using.

1. Creating S3 Bucket

create-s3-bucket Go to AWS Console for S3 Service

create-s3-bucket Create a bucket for your project. Fill name, region and other are default configuration.

2. Add User

add-user Move to AWS Console for IAM and select 'Access Management - Users' And Click 'Add Users'

add-user Set User name and check for 'Access Key' as credential type.

Policy for accessing S3 bucket

create-policy We need to create a policy for accessing s3 bucket you've made before. Select 3rd one in 'Set permissions' section. And click 'Create Policy', It'll open new tab of your browser.

create-policy Click JSON tab and edit for yours.

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Effect": "Allow",
            "Action": "s3:*",
            "Resource": [
                "arn:aws:s3:::my-project-attachments",
                "arn:aws:s3:::my-project-attachments/*"
            ]
        }
    ]
}

create-policy Set Name for the last step and finish creating the policy.

Assign the policy to user

add-user Now you can find new policy with 'refresh icon' button. Check the new one and go next.

add-user Finally, you can get access key pair.

FAQs

Last updated on 04 May 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc