Introduction to Terraform HCL
Learn the basics of Terraform HashiCorp Configuration Language.
We'll cover the following...
HashiCorp Configuration Language (HCL) is the low-level syntax of Terraform language. The two key syntax constructs that form Terraform language syntax are arguments and blocks.
Arguments
A value is assigned to a particular name through an argument.
Press + to interact
image_id = "abc123"
The identifier before the equals sign is the argument name, and the expression after the equals sign is the argument’s value.
Blocks
A block is a ...