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

Merge pull request #4789 from mohangk/devel

Fix for connect method parameter order
This commit is contained in:
Michael DeHaan 2013-11-03 08:49:00 -08:00
commit 6e6884d6e0

View file

@ -102,7 +102,8 @@ else:
boto_found = True
def connect(ec2_url, ec2_secret_key, ec2_access_key, region, module):
def connect(ec2_url, ec2_access_key, ec2_secret_key, region, module):
""" Return an ec2 connection"""
# allow environment variables to be used if ansible vars aren't set
if not ec2_url and 'EC2_URL' in os.environ: