Hashicorp Configuration Language (HCL)

  • is used by Terraform uses to express infrastructure

For Example

resource "aws_instance" "hello" {
  ami = "<ami-id>"
  instance_type = "t2.micro"
}

In this example, we are declaring a terraform resource of type “aws_instance” with name “hello”