Category: Uncategorized

  • Firecracker: AWS’s not-so-secret weapon

    I talked about MicroVMs in my previous article. In this article, we will examine Firecracker in detail. Firecracker is developed by AWS and it is used in Fargate, which is a serverless compute for containers solution and it is used in lambda which it offers as a function as a service solution. If you’re curious…

  • What is MicroVM

    At the very beginning of the story there were virtual machines, and the cloud came along, then containers made our job easier and the cloud leveled up. MicroVM, on the other hand, is an invention that has leveled up the cloud. Currently MicroVMs are used in many places including AWS lambda, AWS fargate. In this…

  • Why Do We Use Tags on AWS Resources

    Every AWS resource has key value pairs called tags. You can organize your resources using these key-value pairs. In this article, I want to tell you these organization scenarios and examples. Let’s take a quick look at what we can do using tags 1- Keep track of how much you pay for your resources If…

  • Terraform 101

    Hello, In this article, I will talk about terraform foundations. If you want to have a basic knowledge of Terraform, this article may be useful for you. In this article, we’re going to create, update and terminate an AWS EC2 instance. You can also read the Turkish version of the article from my medium account…

  • What is Serverless Computing

    What is serverless? Let’s get started with what serverless is not. If you want to publish your web application all over the world, you need to make your application accessible from the internet. so your application runs on a server and users send http requests to your server.  Before serverless computing you need to configure…