2019-01-15 20:51:21 +01:00
|
|
|
---
|
2020-08-15 03:51:06 +02:00
|
|
|
layout: "language"
|
2019-01-15 20:51:21 +01:00
|
|
|
page_title: "setintersection - Functions - Configuration Language"
|
|
|
|
sidebar_current: "docs-funcs-collection-setintersection"
|
|
|
|
description: |-
|
|
|
|
The setintersection function takes multiple sets and produces a single set
|
|
|
|
containing only the elements that all of the given sets have in common.
|
|
|
|
---
|
|
|
|
|
|
|
|
# `setintersection` Function
|
|
|
|
|
2019-01-17 01:33:57 +01:00
|
|
|
-> **Note:** This page is about Terraform 0.12 and later. For Terraform 0.11 and
|
|
|
|
earlier, see
|
|
|
|
[0.11 Configuration Language: Interpolation Syntax](../../configuration-0-11/interpolation.html).
|
|
|
|
|
2019-01-15 20:51:21 +01:00
|
|
|
The `setintersection` function takes multiple sets and produces a single set
|
|
|
|
containing only the elements that all of the given sets have in common.
|
|
|
|
In other words, it computes the
|
|
|
|
[intersection](https://en.wikipedia.org/wiki/Intersection_(set_theory)) of the sets.
|
|
|
|
|
|
|
|
```hcl
|
|
|
|
setintersection(sets...)
|
|
|
|
```
|
|
|
|
|
|
|
|
## Examples
|
|
|
|
|
|
|
|
```
|
|
|
|
> setintersection(["a", "b"], ["b", "c"], ["b", "d"])
|
|
|
|
[
|
|
|
|
"b",
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
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
|
|
|
|
|
2019-05-02 16:47:19 +02:00
|
|
|
* [`contains`](./contains.html) tests whether a given list or set contains
|
2019-01-15 20:51:21 +01:00
|
|
|
a given element value.
|
2019-09-05 19:08:34 +02:00
|
|
|
* [`setproduct`](./setproduct.html) computes the _Cartesian product_ of multiple
|
2019-01-15 20:51:21 +01:00
|
|
|
sets.
|
2020-02-06 18:49:11 +01:00
|
|
|
* [`setsubtract`](./setsubtract.html) computes the _relative complement_ of two sets
|
2019-01-15 20:51:21 +01:00
|
|
|
* [`setunion`](./setunion.html) computes the _union_ of
|
|
|
|
multiple sets.
|