Skip to content

Commit

Permalink
docs/r/api_gateway_vpc_link: argument change from target_arn to targe…
Browse files Browse the repository at this point in the history
…t_arns
  • Loading branch information
xiaowei.wang committed Feb 28, 2018
1 parent fefe347 commit a1006d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions website/docs/r/api_gateway_vpc_link.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ resource "aws_lb" "example" {
resource "aws_api_gateway_vpc_link" "example" {
name = "example"
description = "example description"
target_arn = "${aws_lb.example.arn}"
target_arns = ["${aws_lb.example.arn}"]
}
```

Expand All @@ -36,7 +36,7 @@ The following arguments are supported:

* `name` - (Required) The name used to label and identify the VPC link.
* `description` - (Optional) The description of the VPC link.
* `target_arn` - (Required, ForceNew) The ARN of a network load balancer in the VPC targeted by the VPC link.
* `target_arns` - (Required, ForceNew) The list of network load balancer arns in the VPC targeted by the VPC link. Currently AWS only supports 1 target.

## Attributes Reference

Expand Down

0 comments on commit a1006d0

Please sign in to comment.