#twscommunity
Read more stories on Hashnode
Articles with this tag
Introduction Monitoring the performance of your server infrastructure is crucial for ensuring optimal operation and identifying potential issues. In...
Task: Setup grafana in your local environment on AWS EC2. Go to the AWS console and Launch an EC2 instance Open port 3000 in your EC2 instance's...
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...
When you define a resource block in Terraform, by default, this specifies one resource that will be created. To manage several of the same resources,...
Task: 1.Create a VPC (Virtual Private Cloud) with CIDR block 10.0.0.0/16 resource "aws_vpc" "main" { cidr_block = "10.0.0.0/16" tags = { Name =...
In Terraform, variables are used to pass values from external sources into Terraform configuration. They provide a way to configure the infrastructure...