mirror of
https://github.com/hashicorp/terraform.git
synced 2026-02-13 16:03:15 -05:00
As of this commit, that layout doesn't exist yet, but I'm isolating the one-line changes to their own commit to try and keep your eyes from glazing over.
764 B
764 B
| layout | page_title | sidebar_current | description |
|---|---|---|---|
| language | sort - Functions - Configuration Language | docs-funcs-collection-sort | The sort function takes a list of strings and returns a new list with those strings sorted lexicographically. |
sort Function
-> Note: This page is about Terraform 0.12 and later. For Terraform 0.11 and earlier, see 0.11 Configuration Language: Interpolation Syntax.
sort takes a list of strings and returns a new list with those strings
sorted lexicographically.
The sort is in terms of Unicode codepoints, with higher codepoints appearing after lower ones in the result.
Examples
> sort(["e", "d", "a", "x"])
[
"a",
"d",
"e",
"x",
]