Remove debug print statement. Fixed ensure_propagation call to pass 'route_table' and 'connection'.
This commit is contained in:
parent
3961f30f66
commit
e2481ff1e6
1 changed files with 1 additions and 2 deletions
|
@ -496,7 +496,6 @@ def ensure_route_table_present(connection, module):
|
||||||
|
|
||||||
# If no route table returned then create new route table
|
# If no route table returned then create new route table
|
||||||
if route_table is None:
|
if route_table is None:
|
||||||
print route_table.keys()
|
|
||||||
try:
|
try:
|
||||||
route_table = connection.create_route_table(vpc_id, check_mode)
|
route_table = connection.create_route_table(vpc_id, check_mode)
|
||||||
changed = True
|
changed = True
|
||||||
|
@ -511,7 +510,7 @@ def ensure_route_table_present(connection, module):
|
||||||
module.fail_json(msg=e.message)
|
module.fail_json(msg=e.message)
|
||||||
|
|
||||||
if propagating_vgw_ids is not None:
|
if propagating_vgw_ids is not None:
|
||||||
result = ensure_propagation(vpc_conn, route_table_id,
|
result = ensure_propagation(connection, route_table,
|
||||||
propagating_vgw_ids,
|
propagating_vgw_ids,
|
||||||
check_mode=check_mode)
|
check_mode=check_mode)
|
||||||
changed = changed or result['changed']
|
changed = changed or result['changed']
|
||||||
|
|
Loading…
Reference in a new issue