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.
This commit is contained in:
Laurent Crisci 2016-09-14 23:17:19 +01:00
parent ca5c19ad98
commit 64acf0afe5
1 changed files with 1 additions and 1 deletions

View File

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