opentofu/internal/command/testdata/test/default_variables/main.tf

13 lines
220 B
Terraform
Raw Permalink Normal View History

variable "input" {
type = string
default = "Hello, world!"
}
variable "another_input" {
type = object({
optional_string = optional(string, "type_default")
optional_number = optional(number, 42)
})
}