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 ee28b243dd..42b49a34a3 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}" } ```