From 33533eb1560ded3de4f2402c0d2c076c09bad088 Mon Sep 17 00:00:00 2001 From: billwanjohi Date: Tue, 23 Jun 2015 18:31:48 +0000 Subject: [PATCH] iam: use modern helper to allow sts previous implementation ignored the session token when present --- cloud/amazon/iam.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/cloud/amazon/iam.py b/cloud/amazon/iam.py index a7d0fbeee5b..d2807a23b44 100644 --- a/cloud/amazon/iam.py +++ b/cloud/amazon/iam.py @@ -565,13 +565,10 @@ def main(): module.fail_json(changed=False, msg="iam_type: role, cannot currently be updated, " "please specificy present or absent") - ec2_url, aws_access_key, aws_secret_key, region = get_ec2_creds(module) + region, ec2_url, aws_connect_kwargs = get_aws_connection_info(module) try: - iam = boto.iam.connection.IAMConnection( - aws_access_key_id=aws_access_key, - aws_secret_access_key=aws_secret_key, - ) + iam = boto.iam.connection.IAMConnection(**aws_connect_kwargs) except boto.exception.NoAuthHandlerFound, e: module.fail_json(msg=str(e))