mirror of
https://github.com/opentofu/opentofu.git
synced 2026-05-28 04:15:54 -04:00
14 lines
169 B
HCL
14 lines
169 B
HCL
variable "a" {
|
|
default = "foo"
|
|
type = string
|
|
}
|
|
|
|
variable "b" {
|
|
default = []
|
|
type = list(string)
|
|
}
|
|
|
|
variable "c" {
|
|
default = {}
|
|
type = map(string)
|
|
}
|