mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 14:22:46 +00:00
Print explicit error cause when no ELBs are found in AWS
This commit is contained in:
@@ -155,7 +155,7 @@ def list_elb(connection, module):
|
|||||||
try:
|
try:
|
||||||
all_elbs = connection.get_all_load_balancers(elb_names)
|
all_elbs = connection.get_all_load_balancers(elb_names)
|
||||||
except BotoServerError as e:
|
except BotoServerError as e:
|
||||||
module.fail_json(msg=get_error_message(e.args[2]))
|
module.fail_json(msg = "%s: %s" % (e.error_code, e.error_message))
|
||||||
|
|
||||||
elb_array = []
|
elb_array = []
|
||||||
for elb in all_elbs:
|
for elb in all_elbs:
|
||||||
|
|||||||
Reference in New Issue
Block a user