2018-05-12 18:39:29 +02:00
|
|
|
---
|
|
|
|
layout: "functions"
|
2018-12-20 05:35:11 +01:00
|
|
|
page_title: "contains - Functions - Configuration Language"
|
2018-05-12 18:39:29 +02:00
|
|
|
sidebar_current: "docs-funcs-collection-contains"
|
|
|
|
description: |-
|
2019-05-02 16:47:19 +02:00
|
|
|
The contains function determines whether a list or set contains a given value.
|
2018-05-12 18:39:29 +02:00
|
|
|
---
|
|
|
|
|
|
|
|
# `contains` 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-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
|
|
|
|
```
|