Commit 97b3e8c6 by Paul Armstrong

Fix for #7368 breaks peering connections. Unreak them.

parent 14cf3c4d
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment