terraform/website/docs/language/functions/join.mdx

31 lines
640 B
Plaintext
Raw Normal View History

---
2021-11-23 00:47:36 +01:00
page_title: join - Functions - Configuration Language
description: |-
The join function produces a string by concatenating the elements of a list
with a given delimiter.
2021-11-23 00:47:36 +01:00
sidebar_title: join
---
# `join` Function
`join` produces a string by concatenating together all elements of a given
list of strings with the given delimiter.
```hcl
join(separator, list)
```
## Examples
```
> join(", ", ["foo", "bar", "baz"])
foo, bar, baz
> join(", ", ["foo"])
foo
```
## Related Functions
2021-11-23 00:47:36 +01:00
* [`split`](/language/functions/split) performs the opposite operation: producing a list
by separating a single string using a given delimiter.