ec2_vpc_igw - Exit with fail_json when boto is unavailable.

This commit is contained in:
Robert Estelle 2014-12-01 16:01:46 -05:00 committed by Matt Clay
parent 9433c88aef
commit 83d3ff2692

View file

@ -83,15 +83,17 @@ EXAMPLES = '''
'''
import sys
import sys # noqa
try:
import boto.ec2
import boto.vpc
from boto.exception import EC2ResponseError
HAS_BOTO = True
except ImportError:
print "failed=True msg='boto required for this module'"
sys.exit(1)
HAS_BOTO = False
if __name__ != '__main__':
raise
class IGWExcepton(Exception):
@ -153,6 +155,8 @@ def main():
argument_spec=argument_spec,
supports_check_mode=True,
)
if not HAS_BOTO:
module.fail_json(msg='boto is required for this module')
ec2_url, aws_access_key, aws_secret_key, region = get_ec2_creds(module)
if not region: