Files
tree-sitter-jhcl/fuzz/corpus/hashicorp%terraforminternal%terraform%testdata%plan-module-map-literal%child%main.tf
2021-09-19 12:00:18 +02:00

13 lines
172 B
HCL

variable "amap" {
type = map(string)
}
variable "othermap" {
type = map(string)
}
resource "aws_instance" "foo" {
tags = "${var.amap}"
meta = "${var.othermap}"
}