In this video, I demonstrate how to create an S3 bucket and upload a file into it using the AWS CLI from a local system.
Instead of using the AWS web interface, all operations are performed through command-line, which is widely used in real-world DevOps and cloud environments.
🔹 What you’ll learn:
How to configure AWS CLI
How to create an S3 bucket
How to upload a file from local system
How to verify uploaded objects
🔹 Technologies used:
Amazon S3
AWS Identity and Access Management
AWS CLI
🔹 Commands used:
aws configure
aws s3 mb s3://your-bucket-name --region us-west-2
aws s3 ls
aws s3 cp "file-path" s3://your-bucket-name/
aws s3 ls s3://your-bucket-name/
🔹 Note:
S3 bucket names must be globally unique. Make sure to use a unique name while creating your bucket.
Thank you for watching!