Merge pull request #8845 from lcrisci/master
Fixed typo in aws_elb_attachment website docs
This commit is contained in:
commit
f9db94621b
|
@ -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…
Reference in New Issue