1 min read

EC2 Basics

EC2 Basics

EC2 is virtual server service in AWS.


Architecture

graph TD
    A[Developer] --> B[GitHub]
    B --> C[GitHub Actions]
    C --> D[AWS EC2]

Terraform Example

resource "aws_instance" "web" {

  ami           = "ami-123456"
  instance_type = "t2.micro"

}

MCQ

What does EC2 stand for?

  • Elastic Container Cloud
  • Elastic Compute Cloud
  • External Compute Cloud

Tabs Example

Linux

sudo apt update

Docker

docker ps