Files
opentf/website/docs/configuration/functions/list.html.md
Martin Atkins 2f8f7d6f4d lang/funcs: Type conversion functions
It's not normally necessary to make explicit type conversions in Terraform
because the language implicitly converts as necessary, but explicit
conversions are useful in a few specialized cases:

- When defining output values for a reusable module, it may be desirable
  to force a "cleaner" output type than would naturally arise from a
  computation, such as forcing a string containing digits into a number.
- Our 0.12upgrade mechanism will use some of these to replace use of the
  undocumented, hidden type conversion functions in HIL, and force
  particular type interpretations in some tricky cases.
- We've found that type conversion functions can be useful as _temporary_
  workarounds for bugs in Terraform and in providers where implicit type
  conversion isn't working correctly or a type constraint isn't specified
  precisely enough for the automatic conversion behavior.

These all follow the same convention of being named "to" followed by a
short type name. Since we've had a long-standing convention of running all
the words together in lowercase in function names, we stick to that here
even though some of these names are quite strange, because these should
be rarely-used functions anyway.
2019-01-17 10:01:47 -08:00

940 B

layout, page_title, sidebar_current, description
layout page_title sidebar_current description
functions list - Functions - Configuration Language docs-funcs-collection-list The list function constructs a list from some given elements.

list Function

~> This function is deprecated. From Terraform v0.12, the Terraform language has built-in syntax for creating lists using the [ and ] delimiters. Use the built-in syntax instead. The list function will be removed in a future version of Terraform.

list takes an arbitrary number of arguments and returns a list containing those values in the same order.

Examples

> list("a", "b", "c")
[
  "a",
  "b",
  "c",
]

Do not use the above form in Terraform v0.12 or above. Instead, use the built-in list construction syntax, which achieves the same result:

> ["a", "b", "c"]
[
  "a",
  "b",
  "c",
]
  • tolist converts a set value to a list.