mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-25 18:45:20 -06:00
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
|
# Create a new load balancer attachment
|
||||||
resource "aws_elb_attachment" "baz" {
|
resource "aws_elb_attachment" "baz" {
|
||||||
elb = "${aws_elb.bar.id}"
|
elb = "${aws_elb.bar.id}"
|
||||||
instance = ["${aws_instance.foo.id}"]
|
instance = "${aws_instance.foo.id}"
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user