Skip to main content

Posts

Showing posts with the label Upload files in S3 bucket

Allow others to upload files in your Amazon S3 bucket

  Allow others to upload files in your Amazon S3 bucket Let us explore how can we allow others to upload files in our AWS account using AWS console 01. Create user - Login to to AWS console --> Select IAM --> Users --> Add User --> Username -->  Password   02. Create Amazon s3 bucket --> Select S3 --> Create Bucket --> Bucket Name --> Create Bucket Note:  Keep Check Box Checked for Block All public Access, and other options as default.   03. Create Amazon s3 bucket policy --> Select Bucket --> Bucket Policy --> Edit --> Add following bucket policy as follows. Note: Make sure to replace Bucke_Name with your actual bucket name. {     "Version": "2012-10-17",     "Statement": [         {             "Sid": "AllowToListBucket",             "Effect": "Al...