51 lines
1.0 KiB
Plaintext
51 lines
1.0 KiB
Plaintext
---
|
|
page_title: toset - Functions - Configuration Language
|
|
description: The toset function converts a value to a set.
|
|
---
|
|
|
|
# `toset` Function
|
|
|
|
`toset` converts its argument to a set value.
|
|
|
|
Explicit type conversions are rarely necessary in Terraform because it will
|
|
convert types automatically where required. Use the explicit type conversion
|
|
functions only to normalize types returned in module outputs.
|
|
|
|
Pass a _list_ value to `toset` to convert it to a set, which will remove any
|
|
duplicate elements and discard the ordering of the elements.
|
|
|
|
## Examples
|
|
|
|
```
|
|
> toset(["a", "b", "c"])
|
|
[
|
|
"a",
|
|
"b",
|
|
"c",
|
|
]
|
|
```
|
|
|
|
Since Terraform's concept of a set requires all of the elements to be of the
|
|
same type, mixed-typed elements will be converted to the most general type:
|
|
|
|
```
|
|
> toset(["a", "b", 3])
|
|
[
|
|
"a",
|
|
"b",
|
|
"3",
|
|
]
|
|
```
|
|
|
|
Set collections are unordered and cannot contain duplicate values, so the
|
|
ordering of the argument elements is lost and any duplicate values are
|
|
coalesced:
|
|
|
|
```
|
|
> toset(["c", "b", "b"])
|
|
[
|
|
"b",
|
|
"c",
|
|
]
|
|
```
|