website: fix ordering of interpolation functions

This commit is contained in:
Blake Stoddard 2018-01-31 14:50:00 -05:00 committed by Martin Atkins
parent 3d23a14a7a
commit f918fb8583
1 changed files with 5 additions and 5 deletions

View File

@ -187,6 +187,11 @@ The supported built-in functions are:
* `chomp(string)` - Removes trailing newlines from the given string. * `chomp(string)` - Removes trailing newlines from the given string.
* `chunklist(list, size)` - Returns the `list` items chunked by `size`.
Examples:
* `chunklist(aws_subnet.foo.*.id, 1)`: will outputs `[["id1"], ["id2"], ["id3"]]`
* `chunklist(var.list_of_strings, 2)`: will outputs `[["id1", "id2"], ["id3", "id4"], ["id5"]]`
* `cidrhost(iprange, hostnum)` - Takes an IP address range in CIDR notation * `cidrhost(iprange, hostnum)` - Takes an IP address range in CIDR notation
and creates an IP address with the given host number. If given host and creates an IP address with the given host number. If given host
number is negative, the count starts from the end of the range. number is negative, the count starts from the end of the range.
@ -237,11 +242,6 @@ The supported built-in functions are:
* `element(aws_subnet.foo.*.id, count.index)` * `element(aws_subnet.foo.*.id, count.index)`
* `element(var.list_of_strings, 2)` * `element(var.list_of_strings, 2)`
* `chunklist(list, size)` - Returns the `list` items chunked by `size`.
Examples:
* `chunklist(aws_subnet.foo.*.id, 1)`: will outputs `[["id1"], ["id2"], ["id3"]]`
* `chunklist(var.list_of_strings, 2)`: will outputs `[["id1", "id2"], ["id3", "id4"], ["id5"]]`
* `file(path)` - Reads the contents of a file into the string. Variables * `file(path)` - Reads the contents of a file into the string. Variables
in this file are _not_ interpolated. The contents of the file are in this file are _not_ interpolated. The contents of the file are
read as-is. The `path` is interpreted relative to the working directory. read as-is. The `path` is interpreted relative to the working directory.