mirror of
https://github.com/terraform-docs/terraform-docs.git
synced 2026-03-27 21:08:41 +07:00
35 lines
1.8 KiB
Plaintext
35 lines
1.8 KiB
Plaintext
## Inputs
|
|
|
|
| Name | Description | Type |
|
|
|------|-------------|------|
|
|
| unquoted | n/a | `any` |
|
|
| bool-3 | n/a | `bool` |
|
|
| bool-2 | It's bool number two. | `bool` |
|
|
| bool-1 | It's bool number one. | `bool` |
|
|
| string-3 | n/a | `string` |
|
|
| string-2 | It's string number two. | `string` |
|
|
| string-1 | It's string number one. | `string` |
|
|
| string-special-chars | n/a | `string` |
|
|
| number-3 | n/a | `number` |
|
|
| number-4 | n/a | `number` |
|
|
| number-2 | It's number number two. | `number` |
|
|
| number-1 | It's number number one. | `number` |
|
|
| map-3 | n/a | `map` |
|
|
| map-2 | It's map number two. | `map` |
|
|
| map-1 | It's map number one. | `map` |
|
|
| list-3 | n/a | `list` |
|
|
| list-2 | It's list number two. | `list` |
|
|
| list-1 | It's list number one. | `list` |
|
|
| input_with_underscores | A variable with underscores. | `any` |
|
|
| input-with-pipe | It includes v1 \| v2 \| v3 | `string` |
|
|
| input-with-code-block | This is a complicated one. We need a newline.<br>And an example in a code block<pre>default = [<br> "machine rack01:neptune"<br>]</pre> | `list` |
|
|
| long_type | This description is itself markdown.<br><br>It spans over multiple lines. | <pre>object({<br> name = string,<br> foo = object({ foo = string, bar = string }),<br> bar = object({ foo = string, bar = string }),<br> fizz = list(string),<br> buzz = list(string)<br> })</pre> |
|
|
| no-escape-default-value | The description contains `something_with_underscore`. Defaults to 'VALUE_WITH_UNDERSCORE'. | `string` |
|
|
| with-url | The description contains url. https://www.domain.com/foo/bar_baz.html | `string` |
|
|
| string_default_empty | n/a | `string` |
|
|
| string_default_null | n/a | `string` |
|
|
| string_no_default | n/a | `string` |
|
|
| number_default_zero | n/a | `number` |
|
|
| bool_default_false | n/a | `bool` |
|
|
| list_default_empty | n/a | `list(string)` |
|
|
| object_default_empty | n/a | `object({})` | |