Back to Opentofu

`anytrue` Function

website/docs/language/functions/anytrue.mdx

1.11.6311 B
Original Source

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