Last updated
Was this helpful?
Goal: Create a Terraform resource
Select main.tf in the file tree and add the following Terraform code:
resource "local_file" "txt" {
filename = "tutorial.txt"
content = "Hello world!"
}
Click SAVE
Your Terraform (HCL) source code is validated as you type!
On the right side you can switch between the CODE view, FORM builder or official Terraform DOCS 
Last updated
Was this helpful?
Was this helpful?