Skip to content

Commit

Permalink
Fix vpc_peering_connections website lint
Browse files Browse the repository at this point in the history
  • Loading branch information
tmccombs committed Aug 19, 2020
1 parent b9ef8c6 commit bbb3228
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions website/docs/d/vpc_peering_connections.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ the data source, as noted in [issue 4149](https://github.com/hashicorp/terraform
# Declare the data source
data "aws_vpc_peering_connections" "pcs" {
filter {
name = "requester-vpc-info.vpc-id"
name = "requester-vpc-info.vpc-id"
values = ["${aws_vpc.foo.id}"]
}
}
# get the details of each resource
data "aws_vpc_peering_connection" "pc" {
count = "${length(data.aws_vpc_peering_connections.pcs.ids)}"
id = "${data.aws_vpc_peering_connections.pcs.ids[count.index]}"
id = "${data.aws_vpc_peering_connections.pcs.ids[count.index]}"
}
```

Expand Down

0 comments on commit bbb3228

Please sign in to comment.