* Disassociate subnets from route tables before deletion
If a route table still has subnets associated with it, it will fail
to delete:
```
"msg": "The routeTable 'rtb-abcd1234' has dependencies and cannot be deleted."
```
Avoid this by disassociating subnets before route table deletion
* Fix ec2_vpc_route_table flake8 complaints
@ -28,7 +34,9 @@ author: Robert Estelle (@erydo), Rob White (@wimnat)
options:
lookup:
description:
-"Look up route table by either tags or by route table ID. Non-unique tag lookup will fail. If no tags are specifed then no lookup for an existing route table is performed and a new route table will be created. To change tags of a route table, you must look up by id."
-"Look up route table by either tags or by route table ID. Non-unique tag lookup will fail.
-"A dictionary of resource tags of the form: { tag1: value1, tag2: value2 }. Tags are used to uniquely identify route tables within a VPC when the route_table_id is not supplied."
-"A dictionary of resource tags of the form: { tag1: value1, tag2: value2 }. Tags are