Day 38 & 39 Getting Started with AWS Basics☁

Kritika ShawKritika Shaw
3 min read

Day 38 & 39 of #90daysofdevops

Hey Techies! Welcome to this blog

In this blog, we are Getting Started with AWS Basics☁

In this, we'll guide you through hands-on tasks to master Identity and Access Management (IAM), launch EC2 instances, set up Jenkins, and deploy Docker. Whether you're a beginner or looking to enhance your AWS skills, follow these step-by-step instructions for a comprehensive understanding.

Task 1: Empowering Your IAM User for EC2 Access

Step 1: Create an IAM User with EC2 Access

  1. Navigate to the AWS Management Console.

  2. Open the IAM dashboard and click on "Users."

  3. Click "Add user," enter a username, and select "Programmatic access."

  4. Attach the "AmazonEC2FullAccess" policy.

  5. Review and create the user, noting the access key and secret key.

Step 2: Launch a Linux EC2 Instance with Jenkins and Docker

Create a Shell Script for Docker, e.g., docker.sh:

#!/bin/bash

# install docker

sudo apt-get update
sudo apt install docker.io

# give permission
sudo usermod -aG docker $USER

For Jenkins,

#!/bin/bash

# install jenkins

# First install java before jenkins

sudo apt update
sudo apt install fontconfig openjdk-17-jre

# Install jenkins

sudo wget -O /usr/share/keyrings/jenkins-keyring.asc \
  https://pkg.jenkins.io/debian-stable/jenkins.io-2023.key
echo deb [signed-by=/usr/share/keyrings/jenkins-keyring.asc] \
  https://pkg.jenkins.io/debian-stable binary/ | sudo tee \
  /etc/apt/sources.list.d/jenkins.list > /dev/null
sudo apt-get update
sudo apt-get install jenkins

Make the script executable and run it:

chmod +x docker.sh jenkins.sh
./docker.sh
./jenkins.sh

This scripts installs Jenkins and Docker on your EC2 instance.

Task 2: Assembling Your DevOps Avengers

Step 1: Create DevOps IAM Users

  1. Head to the IAM dashboard.

  2. Create three users: DevOpsUser1, DevOpsUser2, and DevOpsUser3.

  3. Attach policies such as "AmazonEC2FullAccess" to each user.

Step 2: Group Users into DevOps Groups

  1. In the IAM dashboard, navigate to "Groups."

  2. Create a group named "DevOpsGroup."

  3. Add the three DevOps users to this group.

Task 3: Launching Jenkins on EC2

Step 1: Launch an EC2 Instance with Jenkins

  1. Go to the EC2 dashboard.

  2. Launch an instance with Amazon Linux 2 AMI.

  3. In the user data section, add:

#!/bin/bash

# install jenkins

# First install java before jenkins

sudo apt update
sudo apt install fontconfig openjdk-17-jre

# Install jenkins

sudo wget -O /usr/share/keyrings/jenkins-keyring.asc \
  https://pkg.jenkins.io/debian-stable/jenkins.io-2023.key
echo deb [signed-by=/usr/share/keyrings/jenkins-keyring.asc] \
  https://pkg.jenkins.io/debian-stable binary/ | sudo tee \
  /etc/apt/sources.list.d/jenkins.list > /dev/null
sudo apt-get update
sudo apt-get install jenkins

sudo systemctl start jenkins

Complete the instance creation process.

Step 2: Access Jenkins Page

  1. Once the instance is running, note its public IP address.

  2. In your browser, enter http://<your-instance-ip>:8080.

  3. Retrieve the Jenkins initial password from the instance:

sudo cat /var/lib/jenkins/secrets/initialAdminPassword

Follow the on-screen instructions to set up Jenkins.

Task 4: Unraveling IAM Roles

Step 1: Understand IAM Roles

Before creating IAM roles, let's delve into the concept of IAM Roles. IAM Roles are AWS Identity and Access Management entities that define a set of permissions for making AWS service requests. Unlike IAM users, roles do not have any credentials; instead, they rely on temporary security tokens.

Roles are useful in scenarios such as cross-account access, temporary access for users or applications, and delegating permissions to AWS services.

Read more about IAM Roles here.

Step 2: Create IAM Roles

  1. In the IAM dashboard, navigate to "Roles."

  2. Create three roles: DevOps-User, Test-User, and Admin.

  3. Define the respective policies for each role.

That's it! You've just completed the task. 🎉

Thank you so much for taking the time to read till the end! Hope you found this blog informative and helpful.

Feel free to explore more of my content, and don't hesitate to reach out if need any assistance from me or in case of you have any questions.

Happy Learning!

~kritika :)

Connect with me: linkedin.com/in/kritikashaw

0
Subscribe to my newsletter

Read articles from Kritika Shaw directly inside your inbox. Subscribe to the newsletter, and don't miss out.

Written by

Kritika Shaw
Kritika Shaw

🛠️ Exploring DevOps tools: Docker, Kubernetes, Jenkins, Terraform, and more. 🌐Let's connect, learn, and grow together.