1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

ec2_vpc_route_table: fixes: #2377 (#2421)

fixed fatal error when propagating_vgw_ids is None
This commit is contained in:
John Kerkstra 2016-07-07 17:43:12 -05:00 committed by Matt Clay
parent cb43a69d8b
commit 40bedf4f83

View file

@ -318,7 +318,8 @@ def ensure_routes(vpc_conn, route_table, route_specs, propagating_vgw_ids,
# VGWs in place.
routes_to_delete = [r for r in routes_to_match
if r.gateway_id != 'local'
and r.gateway_id not in propagating_vgw_ids]
and (propagating_vgw_ids is not None
and r.gateway_id not in propagating_vgw_ids)]
changed = routes_to_delete or route_specs_to_create
if changed: