variable unquoted {} variable "bool-3" { default = true } variable "bool-2" { description = "It's bool number two." default = false } // It's bool number one. variable "bool-1" { default = true } # terraform-docs-ignore variable "ignored" { default = "" } variable "string-3" { default = "" } variable "string-2" { description = "It's string number two." type = "string" } // It's string number one. variable "string-1" { default = "bar" } variable "string-special-chars" { default = "\\.<>[]{}_-" } variable "number-3" { type = number default = "19" } variable "number-4" { type = number default = 15.75 } variable "number-2" { description = "It's number number two." type = "number" } // It's number number one. variable "number-1" { default = 42 } variable "map-3" { default = {} } variable "map-2" { description = "It's map number two." type = "map" } // It's map number one. variable "map-1" { default = { a = 1 b = 2 c = 3 } type = "map" } variable "list-3" { default = [] } variable "list-2" { description = "It's list number two." type = "list" } // It's list number one. variable "list-1" { default = ["a", "b", "c"] type = "list" } // A variable with underscores. variable "input_with_underscores" {} // A variable with pipe in the description variable "input-with-pipe" { description = "It includes v1 | v2 | v3" default = "v1" } variable "input-with-code-block" { description = <