mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-28 01:41:48 -06: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}"
|
|
}
|