Fixed typo on interpolation docs (#9880)

Removes extra slash in name
This commit is contained in:
Jason Wieringa 2016-11-04 12:48:44 -07:00 committed by Paul Stack
parent 4b506eb811
commit 43dcc30ae8
1 changed files with 1 additions and 1 deletions

View File

@ -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}`.