mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-28 03:00:23 -07:00
Merge pull request #8022 from psa/vpc-gateway-peering
Fix for #7368 breaks peering connections. Unreak them.
This commit is contained in:
commit
1f813ba128
1 changed files with 3 additions and 1 deletions
|
@ -427,8 +427,10 @@ def create_vpc(module, vpc_conn):
|
||||||
'(igw) route, but you have no Internet Gateway'
|
'(igw) route, but you have no Internet Gateway'
|
||||||
)
|
)
|
||||||
route_kwargs['gateway_id'] = igw.id
|
route_kwargs['gateway_id'] = igw.id
|
||||||
else:
|
elif route['gw'].startswith('i-'):
|
||||||
route_kwargs['instance_id'] = route['gw']
|
route_kwargs['instance_id'] = route['gw']
|
||||||
|
else:
|
||||||
|
route_kwargs['gateway_id'] = route['gw']
|
||||||
vpc_conn.create_route(new_rt.id, route['dest'], **route_kwargs)
|
vpc_conn.create_route(new_rt.id, route['dest'], **route_kwargs)
|
||||||
|
|
||||||
# Associate with subnets
|
# Associate with subnets
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue