Aws RevisionWhat is AWS? AWS (Amazon Web Services) is a cloud computing platform by Amazon that provides on-demand IT resources like servers, storage, databases, and more over the internet. You pay only for what you use. Why do we need AWS? Cost-Effective: No ...Jan 21, 2025·88 min read
Creating the infrastructure for a secure 3-tier application on Azuremain.tf file : terraform { required_providers { azurerm = { source = "hashicorp/azurerm" version = "~>3.0" } } } provider "azurerm" { features {} } resource "azurerm_resource_group" "rg" { name = "appservice-rg" l...Jun 7, 2024·3 min read
Deployment of a static website on Azure Storage using TerraformSo initially I created a static website using Html , CSS and JavaScript. I have the following files in my local system : index.html , style.css and script.js . Now, I wish to deploy the website (which is made up of these 3 files) on Azure using Terra...Jun 5, 2024·2 min read
#Getting started with DatadogDatadog is a monitoring and analytics platform that helps businesses keep track of their online stuff and figure out how to make it work better. Important Terms :- i)HOST :- A host is any physical or virtual OS instance that we can monitor using Data...Feb 26, 2024·6 min read
Getting Started with Prometheus and Grafana# What is Prometheus ? Prometheus is a tool that watches over your computer systems, collects data about how they're doing, and alerts you if anything goes wrong. STEP 1 :- Create an AWS EC2 instance of t2.micro or t3.micro with Ubuntu 20.04 LTS . ST...Feb 23, 2024·4 min read