tm_anytrue
Function
-> Note: This function is available in Terraform 0.14 and later.
tm_anytrue
returns true
if any element in a given collection is true
or "true"
. It also returns false
if the collection is empty.
hcl
tm_anytrue(list)
Examples
command
tm_anytrue(["true"])
true
tm_anytrue([true])
true
tm_anytrue([true, false])
true
tm_anytrue([])
false