Fix boto library checking
This commit is contained in:
parent
a86c8ab025
commit
59c3913e0b
1 changed files with 7 additions and 5 deletions
|
@ -90,13 +90,14 @@ EXAMPLES = """
|
||||||
local_action: cloudtrail state=disabled name=main region=us-east-1
|
local_action: cloudtrail state=disabled name=main region=us-east-1
|
||||||
"""
|
"""
|
||||||
|
|
||||||
boto_import_failed = False
|
HAS_BOTO = False
|
||||||
try:
|
try:
|
||||||
import boto
|
import boto
|
||||||
import boto.cloudtrail
|
import boto.cloudtrail
|
||||||
from boto.regioninfo import RegionInfo
|
from boto.regioninfo import RegionInfo
|
||||||
|
HAS_BOTO = True
|
||||||
except ImportError:
|
except ImportError:
|
||||||
boto_import_failed = True
|
HAS_BOTO = False
|
||||||
|
|
||||||
class CloudTrailManager:
|
class CloudTrailManager:
|
||||||
"""Handles cloudtrail configuration"""
|
"""Handles cloudtrail configuration"""
|
||||||
|
@ -147,9 +148,6 @@ class CloudTrailManager:
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
|
|
||||||
if not has_libcloud:
|
|
||||||
module.fail_json(msg='boto is required.')
|
|
||||||
|
|
||||||
argument_spec = ec2_argument_spec()
|
argument_spec = ec2_argument_spec()
|
||||||
argument_spec.update(dict(
|
argument_spec.update(dict(
|
||||||
state={'required': True, 'choices': ['enabled', 'disabled'] },
|
state={'required': True, 'choices': ['enabled', 'disabled'] },
|
||||||
|
@ -161,6 +159,10 @@ def main():
|
||||||
required_together = ( ['state', 's3_bucket_name'] )
|
required_together = ( ['state', 's3_bucket_name'] )
|
||||||
|
|
||||||
module = AnsibleModule(argument_spec=argument_spec, supports_check_mode=True, required_together=required_together)
|
module = AnsibleModule(argument_spec=argument_spec, supports_check_mode=True, required_together=required_together)
|
||||||
|
|
||||||
|
if not HAS_BOTO:
|
||||||
|
module.fail_json(msg='Alex sucks boto is required.')
|
||||||
|
|
||||||
ec2_url, access_key, secret_key, region = get_ec2_creds(module)
|
ec2_url, access_key, secret_key, region = get_ec2_creds(module)
|
||||||
aws_connect_params = dict(aws_access_key_id=access_key,
|
aws_connect_params = dict(aws_access_key_id=access_key,
|
||||||
aws_secret_access_key=secret_key)
|
aws_secret_access_key=secret_key)
|
||||||
|
|
Loading…
Reference in a new issue