mirror of
https://github.com/opentofu/opentofu.git
synced 2026-05-28 04:15:54 -04:00
13 lines
153 B
HCL
13 lines
153 B
HCL
variable "bar" {
|
|
default = "baz"
|
|
}
|
|
|
|
variable "foo" {}
|
|
|
|
variable "counts" {
|
|
type = map(any)
|
|
default = {
|
|
"lalala" = 1,
|
|
"lololo" = 2,
|
|
}
|
|
}
|