From b90cd618c2497b1ebbc7cc71354ace051e10aa3d Mon Sep 17 00:00:00 2001 From: Radek Simko Date: Tue, 23 Feb 2016 11:34:09 +0000 Subject: [PATCH] docs: Sort interpolation functions alphabetically --- .../docs/configuration/interpolation.html.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/website/source/docs/configuration/interpolation.html.md b/website/source/docs/configuration/interpolation.html.md index 465801055..8a316b896 100644 --- a/website/source/docs/configuration/interpolation.html.md +++ b/website/source/docs/configuration/interpolation.html.md @@ -85,14 +85,6 @@ The supported built-in functions are: **This is not equivalent** of `base64encode(sha256(string))` since `sha256()` returns hexadecimal representation. - * `sha1(string)` - Returns a (conventional) hexadecimal representation of the - SHA-1 hash of the given string. - Example: `"${sha1(concat(aws_vpc.default.tags.customer, "-s3-bucket"))}"` - - * `sha256(string)` - Returns a (conventional) hexadecimal representation of the - SHA-256 hash of the given string. - Example: `"${sha256(concat(aws_vpc.default.tags.customer, "-s3-bucket"))}"` - * `cidrhost(iprange, hostnum)` - Takes an IP address range in CIDR notation and creates an IP address with the given host number. For example, ``cidrhost("10.0.0.0/8", 2)`` returns ``10.0.0.2``. @@ -177,6 +169,14 @@ The supported built-in functions are: `n` is the index or name of the subcapture. If using a regular expression, the syntax conforms to the [re2 regular expression syntax](https://code.google.com/p/re2/wiki/Syntax). + * `sha1(string)` - Returns a (conventional) hexadecimal representation of the + SHA-1 hash of the given string. + Example: `"${sha1(concat(aws_vpc.default.tags.customer, "-s3-bucket"))}"` + + * `sha256(string)` - Returns a (conventional) hexadecimal representation of the + SHA-256 hash of the given string. + Example: `"${sha256(concat(aws_vpc.default.tags.customer, "-s3-bucket"))}"` + * `signum(int)` - Returns -1 for negative numbers, 0 for 0 and 1 for positive numbers. This function is useful when you need to set a value for the first resource and a different value for the rest of the resources.