mirror of
https://github.com/opentffoundation/opentf.git
synced 2025-12-21 18:56:57 -05:00
13 lines
220 B
HCL
13 lines
220 B
HCL
|
|
variable "input" {
|
|
type = string
|
|
default = "Hello, world!"
|
|
}
|
|
|
|
variable "another_input" {
|
|
type = object({
|
|
optional_string = optional(string, "type_default")
|
|
optional_number = optional(number, 42)
|
|
})
|
|
}
|