provider/aws: Fix RouteTable data source test (#11410)

Fixes the `TestAccDataSourceAwsRouteTable_main` acceptance test.

```
=== RUN   TestAccDataSourceAwsRouteTable_main
--- PASS: TestAccDataSourceAwsRouteTable_main (11.19s)
```
This commit is contained in:
Jake Champlin 2017-01-25 12:50:37 -05:00 committed by Paul Stack
parent 083f8b29cc
commit 1c805c49b0
1 changed files with 4 additions and 0 deletions

View File

@ -189,5 +189,9 @@ data "aws_route_table" "by_filter" {
name = "association.main"
values = ["true"]
}
filter {
name = "vpc-id"
values = ["vpc-6bd70802"]
}
}
`