Created
October 4, 2017 03:28
-
-
Save DmitryBe/61ed9535f4b4cad254e29eac6a1e0aee to your computer and use it in GitHub Desktop.
Revisions
-
DmitryBe created this gist
Oct 4, 2017 .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,29 @@ #!/bin/bash if [[ -z ${MFA_DEVICE} ]]; then echo 'MFA_DEVICE is required'; exit -1; else echo 'MFA_DEVICE found'; fi if [[ -z ${AWS_ACCESS_KEY_ID} ]]; then echo 'AWS_ACCESS_KEY_ID is required'; exit -1; else echo 'AWS_ACCESS_KEY_ID found'; fi if [[ -z ${AWS_SECRET_ACCESS_KEY} ]]; then echo 'AWS_SECRET_ACCESS_KEY is required'; exit -1; else echo 'AWS_SECRET_ACCESS_KEY found'; fi function aws_auth { CODE=$1 RESPONSE=$2 unset AWS_SESSION_TOKEN echo 'authentication using code: ' $CODE ' with registered device: ' $MFA_DEVICE RESPONSE=`aws sts get-session-token --serial-number $MFA_DEVICE --token-code $CODE` } echo 'enter MFA code: ' read CODE # authenticate using code RESPONSE='' aws_auth $CODE RESPONSE # get tocken export AWS_SESSION_TOKEN=`echo $RESPONSE | jq -r .Credentials.SessionToken` export AWS_ACCESS_KEY_ID=`echo $RESPONSE | jq -r .Credentials.AccessKeyId` export AWS_SECRET_ACCESS_KEY=`echo $RESPONSE | jq -r .Credentials.SecretAccessKey` echo 'session token: ' $AWS_SESSION_TOKEN echo 'access key: ' $AWS_ACCESS_KEY_ID echo 'secret key: ' $AWS_SECRET_ACCESS_KEY