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

Fix for #7368 breaks peering connections. Unreak them.

This commit is contained in:
Paul Armstrong 2014-07-02 23:13:29 +00:00
parent 14cf3c4d2a
commit 97b3e8c6e4

View file

@ -422,8 +422,10 @@ def create_vpc(module, vpc_conn):
'(igw) route, but you have no Internet Gateway'
)
route_kwargs['gateway_id'] = igw.id
else:
elif route['gw'].startswith('i-'):
route_kwargs['instance_id'] = route['gw']
else:
route_kwargs['gateway_id'] = route['gw']
vpc_conn.create_route(new_rt.id, route['dest'], **route_kwargs)
# Associate with subnets