Files
tree-sitter-jhcl/fuzz/corpus/hashicorp%terraforminternal%terraform%testdata%vars-basic%main.tf

15 lines
169 B
Terraform
Raw Normal View History

2021-09-17 20:53:40 +02:00
variable "a" {
default = "foo"
type = string
}
variable "b" {
default = []
type = list(string)
}
variable "c" {
default = {}
type = map(string)
}