-
-
Save drAlberT/61c04a63249a0273c206bc464a2a0e7a to your computer and use it in GitHub Desktop.
Revisions
-
gene1wood created this gist
Dec 29, 2016 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,16 @@ import boto3 def role_arn_to_session(**args): """ Usage : session = role_arn_to_session( RoleArn='arn:aws:iam::012345678901:role/example-role', RoleSessionName='ExampleSessionName') client = session.client('sqs') """ client = boto3.client('sts') response = client.assume_role(**args) return boto3.Session( aws_access_key_id=response['Credentials']['AccessKeyId'], aws_secret_access_key=response['Credentials']['SecretAccessKey'], aws_session_token=response['Credentials']['SessionToken'])