#90daysofdevops
Read more stories on Hashnode
Articles with this tag
🔶 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...
🔶 Task: Set up Grafana in your local environment on AWS EC2. Setting up Grafana on an AWS EC2 instance in your local environment involves several...
Grafana is a popular open-source platform used for monitoring and observability of systems and applications. It provides a wide range of features and...
1. What is Terraform and how it is different from other IaaC tools? Terraform is an IaC tool by HashiCorp. Unlike others, it uses a declarative syntax...
Modules are containers for multiple resources that are used together. A module consists of a collection of .tf and/or .tf.json files kept together in...
S3 bucket: Hands-On Create an S3 bucket using Terraform Create an S3.tf with required bucket name. resource "aws_s3_bucket" "my_bucket" { ...