2018-05-12 18:39:29 +02:00
|
|
|
---
|
2021-12-15 03:41:17 +01:00
|
|
|
page_title: contains - Functions - Configuration Language
|
|
|
|
description: The contains function determines whether a list or set contains a given value.
|
2018-05-12 18:39:29 +02:00
|
|
|
---
|
|
|
|
|
|
|
|
# `contains` Function
|
|
|
|
|
2019-05-02 16:47:19 +02:00
|
|
|
`contains` determines whether a given list or set contains a given single value
|
2018-05-12 18:39:29 +02:00
|
|
|
as one of its elements.
|
|
|
|
|
|
|
|
```hcl
|
|
|
|
contains(list, value)
|
|
|
|
```
|
|
|
|
|
|
|
|
## Examples
|
|
|
|
|
|
|
|
```
|
|
|
|
> contains(["a", "b", "c"], "a")
|
|
|
|
true
|
|
|
|
> contains(["a", "b", "c"], "d")
|
|
|
|
false
|
|
|
|
```
|