From 43dcc30ae89e694fe35f022b7ead33a437502653 Mon Sep 17 00:00:00 2001 From: Jason Wieringa Date: Fri, 4 Nov 2016 12:48:44 -0700 Subject: [PATCH] Fixed typo on interpolation docs (#9880) Removes extra slash in name --- website/source/docs/configuration/interpolation.html.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/source/docs/configuration/interpolation.html.md b/website/source/docs/configuration/interpolation.html.md index d8ed71697..a9c655317 100644 --- a/website/source/docs/configuration/interpolation.html.md +++ b/website/source/docs/configuration/interpolation.html.md @@ -54,7 +54,7 @@ provisioners. The syntax is `TYPE.NAME.ATTRIBUTE`. For example, `${aws_instance.web.id}` will interpolate the ID attribute from the -`aws\_instance` resource named `web`. If the resource has a `count` +`aws_instance` resource named `web`. If the resource has a `count` attribute set, you can access individual attributes with a zero-based index, such as `${aws_instance.web.0.id}`. You can also use the splat syntax to get a list of all the attributes: `${aws_instance.web.*.id}`.