opentofu/terraform/testdata/input-hcl/main.tf
2019-06-30 10:16:15 +02:00

13 lines
171 B
HCL

variable "mapped" {
type = "map"
}
variable "listed" {
type = "list"
}
resource "hcl_instance" "hcltest" {
foo = "${var.listed}"
bar = "${var.mapped}"
}