Terraform
coalescelist Function
⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️
[!IMPORTANT]
Documentation Update: Product documentation previously located in/website
has moved to thehashicorp/web-unified-docs
repository, where all product documentation is now centralized. Please make contributions directly toweb-unified-docs
, since changes to/website
in this repository will not appear on developer.hashicorp.com. ⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️
coalescelist
takes any number of list arguments and returns the first one
that isn't empty.
Examples
> coalescelist(["a", "b"], ["c", "d"])
[
"a",
"b",
]
> coalescelist([], ["c", "d"])
[
"c",
"d",
]
To perform the coalescelist
operation with a list of lists, use the ...
symbol to expand the outer list as arguments:
> coalescelist([[], ["c", "d"]]...)
[
"c",
"d",
]
Related Functions
coalesce
performs a similar operation with string arguments rather than list arguments.