mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-07 18:00:45 -05:00
13 lines
171 B
HCL
13 lines
171 B
HCL
variable "mapped" {
|
|
type = "map"
|
|
}
|
|
|
|
variable "listed" {
|
|
type = "list"
|
|
}
|
|
|
|
resource "hcl_instance" "hcltest" {
|
|
foo = "${var.listed}"
|
|
bar = "${var.mapped}"
|
|
}
|