mirror of
https://github.com/hashicorp/terraform.git
synced 2026-04-22 06:40:42 -04:00
14 lines
178 B
HCL
14 lines
178 B
HCL
|
|
variable "value" {
|
|
type = string
|
|
default = "value"
|
|
}
|
|
|
|
list "foo_list" "some_list_block" {
|
|
provider = foo
|
|
|
|
config {
|
|
condition = var.value
|
|
filter = 42
|
|
}
|
|
}
|