1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

[ec2_ami] Add missing parameters while handling botocore Exceptions. Fixes TypeError exception (#39105)

This commit is contained in:
Benjamin Ness 2018-04-20 17:30:10 -05:00 committed by Sloane Hertel
parent ce796bc34d
commit d36537513e

View file

@ -626,9 +626,9 @@ def get_image_by_id(module, connection, image_id):
result['ProductCodes'] = connection.describe_image_attribute(Attribute='productCodes', ImageId=image_id)['ProductCodes']
except botocore.exceptions.ClientError as e:
if e.response['Error']['Code'] != 'InvalidAMIID.Unavailable':
module.fail_json_aws(e, msg="Error retrieving image attributes" % image_id)
module.fail_json_aws(e, msg="Error retrieving image attributes %s" % image_id)
except botocore.exceptions.BotoCoreError as e:
module.fail_json_aws(e, msg="Error retrieving image attributes" % image_id)
module.fail_json_aws(e, msg="Error retrieving image attributes %s" % image_id)
return result
module.fail_json(msg="Invalid number of instances (%s) found for image_id: %s." % (str(len(images)), image_id))
except (botocore.exceptions.BotoCoreError, botocore.exceptions.ClientError) as e: