Merge pull request #8845 from lcrisci/master

Fixed typo in aws_elb_attachment website docs
This commit is contained in:
James Nugent 2016-09-15 08:40:01 +01:00 committed by GitHub
commit f9db94621b
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}"
}
```