From ece099f453a2b3e36ce2d29b3493c7a4563c84dd Mon Sep 17 00:00:00 2001 From: Aleksejs Sinicins Date: Tue, 17 Oct 2017 17:25:09 +0300 Subject: [PATCH] website: fix "contains" interpolation example --- website/docs/configuration/interpolation.html.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/configuration/interpolation.html.md b/website/docs/configuration/interpolation.html.md index 7d161e5006..d80e528d21 100644 --- a/website/docs/configuration/interpolation.html.md +++ b/website/docs/configuration/interpolation.html.md @@ -215,7 +215,7 @@ The supported built-in functions are: Example: `concat(aws_instance.db.*.tags.Name, aws_instance.web.*.tags.Name)` * `contains(list, element)` - Returns *true* if a list contains the given element - and returns *false* otherwise. Examples: `element(var.list_of_strings, "an_element")` + and returns *false* otherwise. Examples: `contains(var.list_of_strings, "an_element")` * `dirname(path)` - Returns all but the last element of path, typically the path's directory.