41 lines
829 B
Markdown
41 lines
829 B
Markdown
|
---
|
||
|
layout: "functions"
|
||
|
page_title: "list function"
|
||
|
sidebar_current: "docs-funcs-collection-list"
|
||
|
description: |-
|
||
|
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",
|
||
|
]
|
||
|
```
|