2023-08-01 03:59:29 -04:00
|
|
|
|
|
|
|
|
variable "input" {
|
|
|
|
|
type = string
|
|
|
|
|
default = "Hello, world!"
|
|
|
|
|
}
|
2024-12-04 09:48:08 -05:00
|
|
|
|
|
|
|
|
variable "another_input" {
|
|
|
|
|
type = object({
|
|
|
|
|
optional_string = optional(string, "type_default")
|
|
|
|
|
optional_number = optional(number, 42)
|
|
|
|
|
})
|
|
|
|
|
}
|