mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-04-04 12:01:49 -04:00
14 lines
153 B
HCL
14 lines
153 B
HCL
variable "bar" {
|
|
default = "baz"
|
|
}
|
|
|
|
variable "foo" {}
|
|
|
|
variable "counts" {
|
|
type = map(any)
|
|
default = {
|
|
"lalala" = 1,
|
|
"lololo" = 2,
|
|
}
|
|
}
|