terraform/website/docs/language/functions/setunion.mdx

43 lines
1.1 KiB
Plaintext
Raw Normal View History

---
2021-12-15 03:41:17 +01:00
page_title: setunion - Functions - Configuration Language
description: |-
The setunion function takes multiple sets and produces a single set
containing the elements from all of the given sets.
---
# `setunion` Function
The `setunion` function takes multiple sets and produces a single set
containing the elements from all of the given sets. In other words, it
2021-12-15 03:41:17 +01:00
computes the [union](https://en.wikipedia.org/wiki/Union_\(set_theory\)) of
the sets.
```hcl
setunion(sets...)
```
## Examples
```
> setunion(["a", "b"], ["b", "c"], ["d"])
[
"d",
"b",
"c",
"a",
]
```
The given arguments are converted to sets, so the result is also a set and
the ordering of the given elements is not preserved.
## Related Functions
2021-12-15 03:41:17 +01:00
* [`contains`](/language/functions/contains) tests whether a given list or set contains
a given element value.
2021-12-15 03:41:17 +01:00
* [`setintersection`](/language/functions/setintersection) computes the _intersection_ of
multiple sets.
2021-12-15 03:41:17 +01:00
* [`setproduct`](/language/functions/setproduct) computes the _Cartesian product_ of multiple
sets.
2021-12-15 03:41:17 +01:00
* [`setsubtract`](/language/functions/setsubtract) computes the _relative complement_ of two sets