mirror of
https://github.com/opentffoundation/opentf.git
synced 2025-12-30 04:00:12 -05:00
495 B
495 B
layout, page_title, sidebar_current, description
| layout | page_title | sidebar_current | description |
|---|---|---|---|
| language | contains - Functions - Configuration Language | docs-funcs-collection-contains | The contains function determines whether a list or set contains a given value. |
contains Function
contains determines whether a given list or set contains a given single value
as one of its elements.
contains(list, value)
Examples
> contains(["a", "b", "c"], "a")
true
> contains(["a", "b", "c"], "d")
false