Day 35 of 100 Days : Introduction to AWS and IAM Service

·

3 min read


Welcome to the World of AWS! 🌍

Today marks the beginning of an exciting journey into Amazon Web Services (AWS)—a platform that powers some of the most innovative companies worldwide. Over the next 10-15 days, we’ll explore AWS step-by-step, starting with the basics: Creating an AWS account and understanding its IAM (Identity and Access Management) service.

AWS is a go-to platform for cloud computing, offering flexibility, scalability, and security for businesses and developers. Whether you're new to cloud technology or aiming to enhance your DevOps expertise, this series will equip you with practical knowledge and skills. 🚀


What is AWS?

Amazon Web Services (AWS) is like a virtual warehouse of tools and services for modern businesses. It offers:

  • Computing Power: Virtual machines (EC2) to run applications.

  • Storage Solutions: Options like S3 for storing files securely.

  • Databases: Managed services like RDS for relational databases.

  • Machine Learning: Pre-built tools for AI and analytics.

AWS eliminates the need for physical infrastructure, allowing businesses to focus on innovation rather than hardware.


Step 1: Creating an AWS Account

To explore AWS, you’ll first need an account. Here’s how to set it up:

  1. Visit AWS: Go to the AWS Console.

  2. Register Your Email: Sign up using a valid email address and choose a secure password.

  3. Verify Your Identity: Provide credit/debit card details for verification (required even for free-tier usage).

  4. Select a Support Plan: Start with the Free Tier, which offers many services for free with limited usage.

🎉 Your AWS account is now ready for exploration!


Understanding Authentication and Authorization: A Bank Analogy

Imagine AWS as a high-security bank where resources like servers and databases are stored in a vault. To ensure security, AWS employs two key mechanisms:

  1. Authentication: Verifies that you’re an authorized person to enter the bank.

  2. Authorization: Defines what actions you’re allowed to perform once inside (e.g., withdraw, deposit, or just check your balance).

Without these mechanisms, anyone could walk in and access sensitive resources.

Why Use IAM?

  1. Prevent unauthorized access to services like EC2, S3, and RDS.

  2. Grant least privilege access, ensuring users can only perform specific actions.

  3. Protect sensitive data and prevent accidental resource deletions.


IAM Components

  1. Users: Represents individual identities with specific access permissions.

    • Example: A DevOps engineer with read-only access to DB services.
  2. Policies: Define permissions assigned to users or groups.

    • Example: Allowing a user to only view database records but not delete them.
  3. Groups: Logical collections of users with similar permissions.

    • Example: Developers, QA engineers, DB admins.
  4. Roles: Temporary access granted to resources, often used for applications or services.

    • Example: Granting a service access to an S3 bucket without user credentials.

Setting Up IAM in AWS

  1. Create Users: Add individual users to your AWS account.

  2. Attach Policies: Grant specific permissions to users.

  3. Create Groups: Define groups (e.g., Developers, QA) and associate policies.

  4. Use Roles: Assign temporary permissions for applications or cross-account access.


How IAM Enhances Security

  • Ensures sensitive resources are only accessible to authorized users.

  • Reduces the risk of accidental or malicious actions by defining fine-grained access controls.


Conclusion

IAM is essential for securing AWS resources by controlling access through users, groups, policies, and roles. Following the principle of least privilege ensures a safe and efficient environment. Up next, we’ll dive into creating and managing IAM policies! 🚀

Â