🚀Day 43: S3 Programmatic access with AWS-CLI đŸ’» 📁

🚀Day 43: S3 Programmatic access with AWS-CLI đŸ’» 📁

Hi, I hope you had a great day yesterday. Today as part of the #90DaysofDevOps Challenge we will be exploring most commonly used service in AWS i.e S3

·

5 min read

Welcome to Day 43 of the #90DaysOfDevOps Challenge! In today’s session, we will explore S3 (Simple Storage Service) and learn how to leverage its powerful features using the AWS Command Line Interface (AWS CLI). S3 is a highly scalable and durable object storage service provided by AWS, offering secure storage for various types of data.

Amazon S3 — Simple Cloud Storage

Amazon S3, or Simple Storage Service, is a fully managed storage service offered by AWS. It provides developers and businesses with secure, scalable, and durable object storage in the cloud. With Amazon S3, you can store and retrieve any amount of data from anywhere on the web, making it ideal for a wide range of applications such as backup and restore, data archiving, content storage and distribution, and big data analytics.

One of the key features of Amazon S3 is its scalability. It allows you to scale your storage resources up or down based on your requirements, ensuring that you have the necessary capacity to handle any workload. Additionally, Amazon S3 provides high durability, ensuring that your data is protected against hardware failures and errors. It automatically replicates your data across multiple facilities and provides built-in redundancy to ensure data integrity.

Another advantage of Amazon S3 is its security features. It offers fine-grained access control to your data, allowing you to define access policies and permissions at the bucket and object level. You can also encrypt your data at rest and in transit using industry-standard encryption protocols to ensure the confidentiality and integrity of your data.

s3

Overview of S3 Features

S3 offers a wide range of features that make it a versatile storage solution for your applications. Some of the key features of S3 include:

  1. Scalability: S3 provides virtually unlimited storage capacity, allowing you to scale your storage needs as your data grows.

  2. Durability and Availability: S3 stores data across multiple availability zones, ensuring the high durability and availability of your objects.

  3. Security and Access Control: S3 offers robust security mechanisms, including access control policies, bucket policies, and encryption options, to protect your data.

  4. Lifecycle Management: You can define lifecycle policies to automatically transition objects between storage classes based on their age or other criteria.

  5. Versioning: S3 supports versioning, allowing you to store multiple versions of an object and easily restore previous versions if needed.

  6. Event Notifications: S3 can trigger events, such as object creation or deletion, which can be used to automate workflows or trigger other AWS services.

Task 1 — Uploading and Accessing Files

  1. Launch an EC2 instance through the AWS Management Console:
  • Navigate to the EC2 service.

  • Click on “Launch Instances” and follow the prompts to select the desired instance type, configure security settings, and launch the instance.

  • Note down the instance’s public IP or DNS name.

  1. Connect to the EC2 instance using Secure Shell (SSH):
  • Open a terminal or SSH client.

  • Use the SSH command with the EC2 instance’s public IP or DNS name, along with the appropriate SSH key.

  • Follow the above instructions and verify the SSH connection

Create an S3 bucket and upload a file:

  • Go to the S3 service in the AWS Management Console.

  • Click on “Create Bucket” and follow the prompts to configure the bucket settings.

  • Upload a file by clicking on the bucket name, selecting “Upload,” and choosing the desired file.

Access the uploaded file from the EC2 instance using the AWS CLI:

  • Install the AWS CLI on the EC2 instance if it’s not already installed.

  • Use the AWS CLI command aws s3 cp s3://bucket-name/file-name local-file-name to download the file from the S3 bucket.

  aws s3 cp s3://devopschallenge-day43/devopschallenge-testfile.txt devopschallenge-testfile-localcopy.txt
  • Verify the contents of the downloaded file.

Task 2 — Snapshot and Verification

Create a snapshot of the EC2 instance:

  • Go to the EC2 service in the AWS Management Console. Select ‘Elastic Block Store’ and click on ‘Snapshots’

  • Select the ‘Create snapshot’ button.

  • Follow the prompts to create the snapshot.

2. Use the created snapshot to launch a new EC2 instance:

  • Select the created snapshot, go to ‘Actions’ and click on “Create image from snapshot”

  • Follow the prompts and configure the image.

  • Navigate to the AMIs section in the EC2 dashboard to find the newly created image. Right-click on it and select ‘Launch instance from AMI’

To ensure the consistency of the file across both EC2 instances, follow these steps for verification:

  • Connect to the new EC2 instance using SSH.

  • Locate the directory where we downloaded the file earlier in the article and use the cat command to show the content

  • Let’s compare it with the content of the file in the first instance we created earlier:

Congratulations on completing Day 43 of the #90DaysOfDevOps Challenge. Today, we explored S3 Programmatic Access with AWS CLI, learning how to interact with S3 buckets and perform file operations from the command line. Tomorrow, get ready for a new topic as we dive into Relational Database Service (RDS) in AWS. Stay tuned for Day 44!

I hope you learned something from this blog. If you have, don’t forget to follow and click the clap 👏 button below to show your support 😄. Subscribe to my blogs so that you won’t miss any future posts.

If you have any questions or feedback, feel free to leave a comment below. Thanks for reading and have an amazing day ahead!

Â