Infrastructure as Code Vs Configuration Management Vs Infrastructure ProvisioningJun 7, 2023·6 min read
Mini-Project: Simple Automation Using AnsibleIn this Mini-Project, I implemented configuration management technology using an Ansible and running a simple service, Apache. And I’ll install it on 2 slaves at once. So, what are they? Configuration Management Configuration management systems are d...Jun 21, 2023·5 min read
AWS SNS for CloudWatch alarm email notificationsWhat is AWS SNS? SNS (Simple Notification Service) is a highly available publish/subscribe messaging service. The publish-subscribe pattern allows publishers to send messages, without knowledge of who they need to be send to. Instead, it’s up to the ...May 21, 2023·7 min read
Setup AWS Elastic Load BalancerHow to setup AWS Elastic Load Balancer and force to use HTTPS? This article provides an introduction to using a Load Balancer (Classic and Application) through the AWS Management Console, a web-based interface. Here, you’ll create a load balancer tha...May 14, 2023·8 min read
How to Create EC2 Instance in AWS: Step by Step TutorialWhat is Amazon EC2 Instance? An EC2 instance is nothing but a virtual server in Amazon Web services terminology. It stands for Elastic Compute Cloud. It is a web service where an AWS subscriber can request and provision a compute server in AWS cloud....May 10, 2023·18 min read
AWS Identity and Access Management (IAM) – Explained With an AnalogyAWS IAM (Identity and Access Management) gives you control over who can access your AWS services and resources based on some predefined permissions. The two keywords here are “who” and “permissions”. “Who” refers to a specific identity, which can be ...May 8, 2023·10 min read
Kubernetes Storage & Kubernetes SecurityPersistent Volumes (PV): A Persistent Volume is a piece of networked storage in a cluster that has been provisioned by an administrator or dynamically created by a StorageClass. It can be used by one or many pods, and provides durable storage that ...May 6, 2023·5 min read
Kubernetes Services and Service DiscoveryKubernetes Services and Service Discovery Kubernetes Services A Kubernetes service is a logical abstraction for a deployed group of pods in a cluster (which all perform the same function). Services enable communication between various components with...May 3, 2023·3 min read