1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-11-18 03:40:08 +00:00

aws: get and set session token if available (#9397)

This commit is contained in:
Setu Shah 2020-10-29 03:55:41 -07:00 committed by GitHub
parent 47d30784c5
commit 77f7457051
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -61,7 +61,7 @@ function asp() {
else else
aws_access_key_id="$(aws configure get aws_access_key_id --profile $1)" aws_access_key_id="$(aws configure get aws_access_key_id --profile $1)"
aws_secret_access_key="$(aws configure get aws_secret_access_key --profile $1)" aws_secret_access_key="$(aws configure get aws_secret_access_key --profile $1)"
aws_session_token="" aws_session_token="$(aws configure get aws_session_token --profile $1)"
fi fi
export AWS_DEFAULT_PROFILE=$1 export AWS_DEFAULT_PROFILE=$1