© 2023 Hashnode
#terraform
What is HCL? Terraform is an infrastructure as code(IaC) tool developed by HashiCorp.It uses HashiCorp Configuration Language(HCL) as its native configuration language. The language was created to be …
What is HashiCorp Configuration Language? Terraform uses a configuration language called HCL, which stands for HashiCorp Configuration Language. HCL is incredibly easy to understand, even for those …
-HCL syntax used in Terraform Terraform is an Infrastructure as Code (IaC) tool that allows you to define and provision infrastructure resources in a declarative manner. The configuration files in Ter…
As the title suggested we will be creating services or resources on AWS. Before we start with the project some pre-requisite: 1- Create AWS IAM User and give Admin, S3, and Dynamodb full access and ge…
Hello Readers 👩💻👩💻 Explore the HCL Terraform is an infrastructure as code (IaC) tool developed by HashiCorp. It uses HashiCorp Configuration Language (HCL) as its native configuration language. …
🌟Introduction: In this blog post, we will explore how to manage resources using Terraform, focusing on various resource types and their configurations, such as AWS EC2 instances, Azure Virtual Machin…
Resource Management: Terraform stores information about your infrastructure in a state file. This state file keeps track of resources created by your configuration and maps them to real-world resource…
👉 #Day-2 of TerraWeek Challenge 👈 Hello Everyone,In this blog, we will be discussing terraform syntax, variables in terraform, Datatypes, Expression and configurations using HCL syntax. 📝 HCL Synta…
Introduction🧑🦯 Once your code base is ready for your project, it must be delivered to the customer/users smoothly. And make sure the continuing the delivery process is going on. For the sake of an …
Task 1: Create a Terraform configuration file to define a resource of the AWS EC2 instance Here is a Terraform configuration file to define a resource of AWS EC2 instance: # Declare the AWS provide…