mirror of
https://github.com/opentffoundation/opentf.git
synced 2025-12-21 10:47:34 -05:00
29 lines
497 B
Plaintext
29 lines
497 B
Plaintext
---
|
|
sidebar_label: anytrue
|
|
description: |-
|
|
The anytrue function determines whether any element of a collection
|
|
is true or "true". If the collection is empty, it returns false.
|
|
---
|
|
|
|
# `anytrue` Function
|
|
|
|
`anytrue` returns `true` if any element in a given collection is `true`
|
|
or `"true"`. It also returns `false` if the collection is empty.
|
|
|
|
```hcl
|
|
anytrue(list)
|
|
```
|
|
|
|
## Examples
|
|
|
|
```command
|
|
> anytrue(["true"])
|
|
true
|
|
> anytrue([true])
|
|
true
|
|
> anytrue([true, false])
|
|
true
|
|
> anytrue([])
|
|
false
|
|
```
|