diff options
author | Jonathan Davila <jdavila@ansible.com> | 2015-11-13 18:19:09 -0700 |
---|---|---|
committer | Jonathan Davila <jdavila@ansible.com> | 2015-11-16 09:21:26 -0500 |
commit | 1b76a9cef2d74eba9fd786e43f1cf3364a8ac501 (patch) | |
tree | a383de9145dbb1094dca154ca80a8a60797d265c /lib/ansible/module_utils/ec2.py | |
parent | 300ee227a2e6d8017b9c9b34cf56702a827407f5 (diff) | |
download | ansible-1b76a9cef2d74eba9fd786e43f1cf3364a8ac501.tar.gz |
Patch to remove dependency on boto when only using boto3
Updated with explicit check for HAS_BOTO3
Diffstat (limited to 'lib/ansible/module_utils/ec2.py')
-rw-r--r-- | lib/ansible/module_utils/ec2.py | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/lib/ansible/module_utils/ec2.py b/lib/ansible/module_utils/ec2.py index ac799772c2..2edfd9e5d8 100644 --- a/lib/ansible/module_utils/ec2.py +++ b/lib/ansible/module_utils/ec2.py @@ -29,6 +29,7 @@ import os try: import boto3 + import botocore HAS_BOTO3 = True except: HAS_BOTO3 = False @@ -129,10 +130,14 @@ def get_aws_connection_info(module, boto3=False): elif 'EC2_REGION' in os.environ: region = os.environ['EC2_REGION'] else: - # boto.config.get returns None if config not found - region = boto.config.get('Boto', 'aws_region') - if not region: - region = boto.config.get('Boto', 'ec2_region') + if not boto3: + # boto.config.get returns None if config not found + region = boto.config.get('Boto', 'aws_region') + if not region: + region = boto.config.get('Boto', 'ec2_region') + elif boto3 and HAS_BOTO3: + # here we don't need to make an additional call, will default to 'us-east-1' if the below evaluates to None. + region = botocore.session.get_session().get_config_variable('region') if not security_token: if 'AWS_SECURITY_TOKEN' in os.environ: |