Handling dry run exception
This commit is contained in:
parent
6186da08ef
commit
dbdd2475e6
1 changed files with 5 additions and 5 deletions
|
@ -496,13 +496,13 @@ def ensure_route_table_present(connection, module):
|
|||
|
||||
# If no route table returned then create new route table
|
||||
if route_table is None:
|
||||
if module.check_mode:
|
||||
try:
|
||||
route_table = connection.create_route_table(vpc_id, module.check_mode)
|
||||
changed = True
|
||||
except EC2ResponseError as e:
|
||||
if e.error_code == 'DryRunOperation':
|
||||
module.exit_json(changed=True)
|
||||
|
||||
try:
|
||||
route_table = connection.create_route_table(vpc_id)
|
||||
changed = True
|
||||
except EC2ResponseError, e:
|
||||
module.fail_json(msg=e.message)
|
||||
|
||||
if routes is not None:
|
||||
|
|
Loading…
Reference in a new issue