Files
opentf/internal/command/testdata/test/default_variables/main.tf
Oleksandr Levchenkov 32ca523689 fix: type defaults for variables in tests (#2244)
Signed-off-by: ollevche <ollevche@gmail.com>
2024-12-04 16:48:08 +02:00

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)
})
}