From 64acf0afe5bc7767ca714e22ecc52cbc486f78a6 Mon Sep 17 00:00:00 2001 From: Laurent Crisci Date: Wed, 14 Sep 2016 23:17:19 +0100 Subject: [PATCH] Fixed typo in aws_elb_attachment website docs The instance argument is a string and not a list. It will give you an error if you try to define it as a list. --- .../source/docs/providers/aws/r/elb_attachment.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/source/docs/providers/aws/r/elb_attachment.html.markdown b/website/source/docs/providers/aws/r/elb_attachment.html.markdown index ee28b243d..42b49a34a 100644 --- a/website/source/docs/providers/aws/r/elb_attachment.html.markdown +++ b/website/source/docs/providers/aws/r/elb_attachment.html.markdown @@ -22,7 +22,7 @@ conflict and will overwrite attachments. # Create a new load balancer attachment resource "aws_elb_attachment" "baz" { elb = "${aws_elb.bar.id}" - instance = ["${aws_instance.foo.id}"] + instance = "${aws_instance.foo.id}" } ```