Files
tree-sitter-jhcl/fuzz/corpus/hashicorp%terraforminternal%terraform%testdata%refresh-module-input-computed-output%child%main.tf
2021-09-19 12:00:18 +02:00

12 lines
145 B
HCL

variable "input" {
type = string
}
resource "aws_instance" "foo" {
foo = var.input
}
output "foo" {
value = aws_instance.foo.foo
}