You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
packer/website/content/docs/templates/hcl_templates/functions/collection/concat.mdx

21 lines
379 B

---
page_title: concat function reference
description: The `concat` function combines two or more lists into a single list. Learn how to use the `concat` function in Packer templates.
---
# `concat` Function
`concat` takes two or more lists and combines them into a single list.
## Examples
```shell-session
> concat(["a", ""], ["b", "c"])
[
"a",
"",
"b",
"c",
]
```