mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-01-19 11:02:07 -05: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"
|
|
}
|