Use get_aws_connection_info to get AWS creds.

Previously used get_ec2_creds did not consider security_token,
making MFA requests fail.
This commit is contained in:
Martin Froehlich 2015-04-26 14:50:07 +01:00 committed by Matt Clay
parent 831e1d8739
commit 8bff781a0a

View file

@ -1207,15 +1207,11 @@ def main():
ec2 = ec2_connect(module) ec2 = ec2_connect(module)
ec2_url, aws_access_key, aws_secret_key, region = get_ec2_creds(module) region, ec2_url, aws_connect_kwargs = get_aws_connection_info(module)
if region: if region:
try: try:
vpc = boto.vpc.connect_to_region( vpc = boto.vpc.connect_to_region(region, **aws_connect_kwargs)
region,
aws_access_key_id=aws_access_key,
aws_secret_access_key=aws_secret_key
)
except boto.exception.NoAuthHandlerFound, e: except boto.exception.NoAuthHandlerFound, e:
module.fail_json(msg = str(e)) module.fail_json(msg = str(e))
else: else: