Task 1 cloud Computing
Steps to Create and Configure an S3 Bucket
- Create an S3 Bucket
- Log in to your AWS Management Console.
- Navigate to S3.
- Click "Create bucket".
- Provide a unique bucket name
- Choose an AWS region closest to your users.
- Select Block Public Access settings (Keep private unless public access is required).
- Click Create bucket.
- Upload Example Files
- Open your bucket.
- Click "Upload".
- Add example files
- Click Upload.
- Configure Bucket Permissions Option A: Public Read-Only Bucket (If Needed) • Uncheck "Block all public access". • Add a Bucket Policy for public access: { "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Principal": "", "Action": "s3:GetObject", "Resource": "arn:aws:s3:::taskbucket--001/" } ] }Verification • If public, verify by accessing https://taskbucket--001.s3.ap-south-1.amazonaws.com/Task+1.txt.