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.
pull/8845/head
Laurent Crisci 10 years ago
parent ca5c19ad98
commit 64acf0afe5

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

Loading…
Cancel
Save