mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-25 18:45:20 -06:00
15 lines
162 B
HCL
15 lines
162 B
HCL
variable "a" {
|
|
default = "foo"
|
|
type = "string"
|
|
}
|
|
|
|
variable "b" {
|
|
default = []
|
|
type = "list"
|
|
}
|
|
|
|
variable "c" {
|
|
default = {}
|
|
type = "map"
|
|
}
|