Day 74 Task: Connecting EC2 with Grafana .馃敹 Task: Connect a Linux and one Windows EC2 instance with Grafana and monitor the different components of the server. To set up monitoring for a Linux and a Windows EC2 instance using Grafana, you'll need to follow these general steps: Set Up Grafa...Nov 13, 2023路2 min read
Day 69 Task: Meta-Arguments in TerraformWhen you define a resource block in Terraform, by default, this specifies one resource that will be created. To manage several of the same resources, you can use either count or for_each, which removes the need to write a separate block of code for e...Nov 10, 2023路2 min read
Day 68 Task: Scaling with TerraformYesterday, we learned how to AWS S3 Bucket with Terraform. Today, we will see how to scale our infrastructure with Terraform. 馃敹 Understanding Scaling Scaling is the process of adding or removing resources to match the changing demands of your applic...Nov 9, 2023路3 min read
Day 67 Task: AWS S3 Bucket Creation and ManagementS3 bucket: Hands-On Create an S3 bucket using Terraform Create an S3.tf with required bucket name. resource "aws_s3_bucket" "my_bucket" { bucket = "day67s3bucketnew" } Use terraform init and plan to get the providers and view the terrafor...Nov 9, 2023路2 min read
Day 66 Task: Terraform Hands-on Project - Build Your Own AWS Infrastructure with Ease using Infrastructure as Code (IaC)Welcome back to your Terraform journey.Subtasks: Pre-requisite:- Terraform must be installed locally or on an EC2 instance. I am using an EC2 instance. AWS CLI must be configured. As we already know we can write terraform configuration files as a sin...Nov 9, 2023路5 min read
Day 65 Task: Working with Terraform Resources馃敹 Understanding Terraform Resources A resource in Terraform represents a component of your infrastructure, such as a physical server, a virtual machine, a DNS record, or an S3 bucket. Resources have attributes that define their properties and behavi...Nov 8, 2023路3 min read
Day 64 Task: Terraform with AWSProvisioning on AWS becomes remarkably straightforward and efficient with Terraform. Terraform is a potent Infrastructure as Code (IaC) tool that streamlines the process of defining, deploying, and managing cloud resources. 馃敹 Prerequisites 馃敹 AWS CL...Nov 7, 2023路2 min read